Skip to content

Commit

Permalink
Gemfiles into the CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
anakinj committed Dec 2, 2020
1 parent 93d62b4 commit 91e17c7
Showing 1 changed file with 24 additions and 10 deletions.
34 changes: 24 additions & 10 deletions .github/workflows/ci.yml
Expand Up @@ -9,28 +9,42 @@ on:
- "*"
jobs:
test:
name: "Ruby {{ matrix.ruby }}"
strategy:
fail-fast: false
matrix:
ruby:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
experimental: [false]
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
gemfile:
- gemfiles/standalone.gemfile
- gemfiles/openssl.gemfile
- gemfiles/rbnacl.gemfile
allow_failure: [false]
include:
- ruby: 2.1
allow_failure: true
- ruby: 2.2
allow_failure: true
- ruby: "ruby-head"
experimental: true
allow_failure: true
- ruby: "truffleruby-head"
experimental: true
allow_failure: true
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
continue-on-error: ${{ matrix.allow_failure }}
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}

steps:
- uses: actions/checkout@v2

- name: Install libsodium
run: |
sudo apt-get update -q
sudo apt-get install libsodium-dev -y
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit 91e17c7

Please sign in to comment.