tracks/.github/workflows/continuous-integration.yml
2021-08-08 20:44:54 -05:00

23 lines
514 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
- ruby: "2.5"
db: postgres
- ruby: "2.6"
db: sqlite
- ruby: "2.6"
db: postgres
steps:
- uses: actions/checkout@v1
- run: bash -x script/cibuild ${{ matrix.ruby }} ${{ matrix.db }}