diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2021-01-03 05:45:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-03 05:45:06 -0700 |
| commit | b21ce13e34ca5167bf1acbfe6a9b3c40e298ffc4 (patch) | |
| tree | 9f5a375723023117ec33aa66eb990d3d52d4df39 /.github/workflows | |
| parent | fec6f3f0439acaf093547d8053e86ba016243699 (diff) | |
add Ruby 3 to CI matrix; make it primary; patch bug in Prawn; use it for releases (PR #1850)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 12 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/upstream-dispatch.yml | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 703131a4..1b77a28f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Install Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' + ruby-version: '3.0' - name: Configure Bundler run: | bundle config --local path .bundle/gems @@ -36,22 +36,22 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - ruby: [jruby-9.2, '2.5', '2.6', '2.7'] + ruby: [jruby-9.2, '2.5', '2.6', '2.7', '3.0'] upstream: [~] exclude: - os: ubuntu-latest - ruby: '2.7' + ruby: '3.0' include: - os: macos-latest - ruby: '2.7' + ruby: '3.0' - os: ubuntu-latest ruby: '2.5' rouge-version: '~> 2.0.0' - os: ubuntu-latest - ruby: '2.7' + ruby: '3.0' upstream: upstream - os: ubuntu-latest - ruby: '2.7' + ruby: '3.0' primary: primary runs-on: ${{ matrix.os }} env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 65216499..d6815246 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: - name: Install Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' + ruby-version: '3.0' - name: Configure Bundler run: | bundle config --local path .bundle/gems diff --git a/.github/workflows/upstream-dispatch.yml b/.github/workflows/upstream-dispatch.yml index 37b82d09..04ba6855 100644 --- a/.github/workflows/upstream-dispatch.yml +++ b/.github/workflows/upstream-dispatch.yml @@ -13,7 +13,7 @@ jobs: - name: Install Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' + ruby-version: '3.0' - name: Configure Bundler run: | bundle config --local clean true |
