Simplify CI on 2.10 branch #934
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
lint: | |
name: RuboCop | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.1" | |
bundler-cache: true | |
- name: Run RuboCop | |
run: bundle exec rubocop | |
test: | |
name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.gemfile }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
ruby: | |
- "2.5" | |
- "2.6" | |
- "2.7" | |
- "3.0" | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
- "3.4" | |
gemfile: | |
- gemfiles/standalone.gemfile | |
- gemfiles/openssl.gemfile | |
- gemfiles/rbnacl.gemfile | |
- gemfiles/rbnacl_pre_6.gemfile | |
experimental: [false] | |
include: | |
- os: ubuntu-latest | |
ruby: "3.1" | |
gemfile: "gemfiles/standalone.gemfile" | |
experimental: false | |
- os: ubuntu-latest | |
ruby: "truffleruby-head" | |
gemfile: "gemfiles/standalone.gemfile" | |
experimental: true | |
- os: ubuntu-latest | |
ruby: "head" | |
gemfile: "gemfiles/standalone.gemfile" | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
env: | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v3 | |
- 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: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rspec | |
smoke: | |
name: Built GEM smoke test | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.1" | |
- name: Build GEM | |
run: gem build | |
- name: Install built GEM | |
run: gem install jwt-*.gem | |
- name: Run test | |
run: bin/smoke.rb |