tracks/.github/workflows/continuous-integration.yml
Matt Rogers 9f7803bc07
chore(ci): Update the Ruby versions for CI
2.7 is EOL and 3.1 and 3.2 are new.
2023-10-18 10:24:57 -05:00

14 lines
305 B
YAML

---
name: Automated tests
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2"]
db: [sqlite, mysql, postgres]
steps:
- uses: actions/checkout@v1
- run: bash -x script/cibuild ${{ matrix.ruby }} ${{ matrix.db }}