mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
Only define matrices for valid test environments
Removes ruby 3.0 completely and ignores sqlite and postgres for the older Ruby versions
This commit is contained in:
parent
9dd0ee6cef
commit
2d20c8b40e
1 changed files with 7 additions and 1 deletions
8
.github/workflows/continuous-integration.yml
vendored
8
.github/workflows/continuous-integration.yml
vendored
|
|
@ -6,8 +6,14 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: ["2.5", "2.6", "2.7", "3.0"]
|
||||
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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue