Update dependencies of the pubsub gem #27
Workflow file for this run
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 | |
on: | |
push: | |
branches: [ master, gocardless ] | |
pull_request: | |
branches: [ master, gocardless ] | |
concurrency: | |
# running pipeline per workflow per PR | |
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }} | |
# Running a new pipeline will cancel any running pipelines that belong to the above group | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: [ '3.3.5' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rake test |