Bump rubocop from 1.69.1 to 1.69.2 #1767
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: ci | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
env: | |
BUGZILLA_API_KEY: ${{ secrets.BUGZILLA_API_KEY }} | |
SECRET_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby 3.1 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1 | |
- name: Install bundler dependencies | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
- name: Check source files using `rubocop` | |
run: rubocop | |
- name: run unit tests | |
run: bundle exec rspec spec/unit --fail-fast | |
- name: Start services in docker compose | |
run: docker compose up -d | |
- name: run integration tests | |
run: bundle exec rspec spec/integration --fail-fast |