CI: Improve the job names of GitHub Actions (#130)
This commit is contained in:
parent
1440ee9ceb
commit
08dae900b7
|
@ -10,7 +10,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: test py${{ matrix.python-version }}
|
name: test py${{ matrix.python-version }} with ${{ matrix.db_name }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -19,10 +19,12 @@ jobs:
|
||||||
- "postgres://postgres:postgres@localhost/postgres"
|
- "postgres://postgres:postgres@localhost/postgres"
|
||||||
- "sqlite:///takahe.db"
|
- "sqlite:///takahe.db"
|
||||||
include:
|
include:
|
||||||
- db: "sqlite:///takahe.db"
|
|
||||||
search: false
|
|
||||||
- db: "postgres://postgres:postgres@localhost/postgres"
|
- db: "postgres://postgres:postgres@localhost/postgres"
|
||||||
|
db_name: postgres
|
||||||
search: true
|
search: true
|
||||||
|
- db: "sqlite:///takahe.db"
|
||||||
|
db_name: sqlite
|
||||||
|
search: false
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:15
|
image: postgres:15
|
||||||
|
|
Loading…
Reference in New Issue