File: push-cibuild.yml

package info (click to toggle)
ruby-github-pages-health-check 1.19.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 324 kB
  • sloc: ruby: 1,135; sh: 53; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
on: push
name: "GitHub Pages Health Check Tests"
permissions:
  contents: read
jobs:
  build:
    name: "GitHub Pages Health Check Tests"
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '3.1'
          - '3.2'
          - '3.3'
    steps:
    - uses: actions/checkout@master
    - name: script/cibuild-docker
      run: script/cibuild-docker
      env:
        RUBY_VERSION: ${{ matrix.ruby }}