Skip to content

Commit

Permalink
Run tests on ubuntu 22 with openssl 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anakinj committed Jul 27, 2022
1 parent 7c29ccd commit e92cea3
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -22,34 +22,35 @@ jobs:
- name: Run RuboCop
run: bundle exec rubocop
test:
name: ${{ matrix.os }} ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
ruby:
- 2.5
- 2.6
- 2.7
- "2.5"
- "2.6"
- "2.7"
- "3.0"
- 3.1
- "3.1"
gemfile:
- gemfiles/standalone.gemfile
- gemfiles/openssl.gemfile
- gemfiles/rbnacl.gemfile
experimental: [false]
include:
- ruby: 2.7
gemfile: 'gemfiles/rbnacl.gemfile'
- ruby: "ruby-head"
experimental: true
- ruby: "truffleruby-head"
experimental: true
runs-on: ubuntu-20.04
- { os: ubuntu-20.04, ruby: "2.7", gemfile: 'gemfiles/rbnacl.gemfile', experimental: false }
- { os: ubuntu-22.04, ruby: "3.1", experimental: false }
- { os: ubuntu-20.04, ruby: "truffleruby-head", experimental: true }
- { os: ubuntu-22.04, ruby: "head", experimental: true }
continue-on-error: ${{ matrix.experimental }}
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install libsodium
run: |
Expand Down

0 comments on commit e92cea3

Please sign in to comment.