Skip to content

Commit

Permalink
CI: install gems
Browse files Browse the repository at this point in the history
🤦 from 22b8be7
  • Loading branch information
dentarg committed Aug 9, 2024
1 parent 22b8be7 commit 4d814fe
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,28 @@ jobs:
rack: ${{ matrix.sinatra }}
steps:
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
continue-on-error: ${{ matrix.allow-failure || false }}
id: bundle
id: setup
with:
ruby-version: ${{ matrix.ruby }}
- name: "setup-ruby and bundle install outcome: ${{ steps.bundle.outcome }}"

- name: "setup-ruby: ${{ steps.setup.outcome }}"
run: echo ""

- name: Install gems
continue-on-error: ${{ matrix.allow-failure || false }}
id: bundle
run: bundle install

- name: "bundle install: ${{ steps.bundle.outcome }}"
run: echo ""

- name: Run tests
continue-on-error: ${{ matrix.allow-failure || false }}
id: test
run: bundle exec rake

- name: "bundle exec rake outcome: ${{ steps.test.outcome }}"
run: echo ""

0 comments on commit 4d814fe

Please sign in to comment.