Sha256: 0de37d89b58b53a7f2f8e069105e0be62634ed119eac8ffa04925866cf356e61
Contents?: true
Size: 901 Bytes
Versions: 2
Compression:
Stored size: 901 Bytes
Contents
name: CI on: [push, pull_request] jobs: build: name: >- Ruby ${{ matrix.ruby }} env: CI: true runs-on: ${{ matrix.os }} continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' || matrix.experimental }} if: | !( contains(github.event.pull_request.title, '[ci skip]') || contains(github.event.pull_request.title, '[skip ci]')) strategy: fail-fast: true matrix: experimental: [false] os: [ ubuntu-latest ] ruby: - 2.6 - 2.7 - '3.0' - '3.1' steps: - name: Repo checkout uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests timeout-minutes: 10 run: bundle exec rake test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
doorkeeper-jwt-0.4.2 | .github/workflows/ci.yml |
doorkeeper-jwt-0.4.1 | .github/workflows/ci.yml |