mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
13 lines
No EOL
310 B
YAML
13 lines
No EOL
310 B
YAML
---
|
|
name: Automated tests
|
|
on: pull_request
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
ruby: ["2.5", "2.6", "2.7", "3.0"]
|
|
db: [sqlite, mysql, postgres]
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- run: bash -x script/cibuild ${{ matrix.ruby }} ${{ matrix.db }} |