Bump steep version #107
This file contains 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 Suite | |
# Run against all commits and pull requests. | |
on: [ push, pull_request ] | |
jobs: | |
test_matrix: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu | |
- macos | |
ruby: | |
- 2.7 | |
- 3.3 | |
- 3.4 | |
runs-on: ${{ matrix.os }}-latest | |
env: | |
TEST_CHECKS: 100 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Build Argon2 C library | |
run: bin/setup | |
- name: Test Argon2 C library | |
run: bin/test | |
- name: Run tests | |
run: bundle exec rake test | |
- name: Coveralls Parallel | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
flag-name: run-${{ matrix.ruby-version }} | |
parallel: true | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0 | |
bundler-cache: true | |
- name: Run rubocop | |
run: bundle exec rake rubocop | |
finish: | |
runs-on: ubuntu-latest | |
needs: [ test_matrix, rubocop ] | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true | |
- name: Wait for status checks | |
run: echo "All Green!" |