Sha256: d1ffbc9c86cc3f8df4e2abbefd5bc365c6d09cac2573d78a545c8d86c85d7595
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
name: Verify # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions permissions: actions: none checks: none contents: none deployments: none id-token: none issues: none discussions: none packages: none pages: none pull-requests: none repository-projects: none security-events: none statuses: none on: push: branches: - '*' pull_request: branches: - '*' jobs: test: runs-on: ${{ matrix.os }} timeout-minutes: 40 strategy: fail-fast: true matrix: ruby: - 2.7 - 3.0 - 3.1 os: - ubuntu-18.04 - ubuntu-22.04 exclude: - { os: ubuntu-22.04, ruby: 2.7 } - { os: ubuntu-22.04, ruby: 3.0 } test_cmd: - bundle exec rspec env: RAILS_ENV: test name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }} steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: ${{ matrix.test_cmd }} run: | echo "${CMD}" bash -c "${CMD}" env: CMD: ${{ matrix.test_cmd }}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rex-text-0.2.39 | .github/workflows/verify.yml |