Skip to content

Commit

Permalink
ci: Run integration testing in separate job
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisklein committed Feb 3, 2025
1 parent fe957e1 commit a27ebf1
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,21 @@ jobs:
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
- name: Run Rubocop
run: bundle exec rake rubocop
- name: Run Unit Tests
run: bundle exec rake spec

integration:
runs-on: ubuntu-latest
name: Integration

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4'
bundler-cache: true
- name: Run Integration Tests
run: bundle exec rake integration

0 comments on commit a27ebf1

Please sign in to comment.