tracks/.github/workflows/continuous-integration.yml
Matt Rogers 2d20c8b40e Only define matrices for valid test environments
Removes ruby 3.0 completely and ignores sqlite and postgres for the
older Ruby versions
2021-07-24 19:02:15 +00:00

19 lines
No EOL
439 B
YAML

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