Skip to content

Commit

Permalink
Run CI workflow on pull requests (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
aburgel authored Jan 14, 2024
1 parent 688a38d commit 7566b6c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
name: ci
on: [push]
on:
push:
branches:
- master
pull_request:

jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
ruby:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- ruby-head
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
Expand Down

0 comments on commit 7566b6c

Please sign in to comment.