diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1e35e66..ff70000 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,6 +17,7 @@ jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: ruby: ["2.7.7", "3.2.1"] steps: @@ -25,4 +26,9 @@ jobs: with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - - run: bundle exec rake test \ No newline at end of file + - name: Bundle audit + run: bundle exec bundle-audit --update + - name: Install dependencies + - run: bundle install + - name: Run tests + - run: bundle exec rake test