Skip to content

Ensure that CI also runs on the master branch. (#100) #10

Ensure that CI also runs on the master branch. (#100)

Ensure that CI also runs on the master branch. (#100) #10

Workflow file for this run

name: Wombat CI
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [3.2, 3.1, '3.0']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test