CI: Improve the job names of GitHub Actions (#130)

This commit is contained in:
TAKAHASHI Shuuji 2022-12-09 02:17:36 +09:00 committed by GitHub
parent 1440ee9ceb
commit 08dae900b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ on:
jobs:
test:
name: test py${{ matrix.python-version }}
name: test py${{ matrix.python-version }} with ${{ matrix.db_name }}
runs-on: ubuntu-latest
strategy:
matrix:
@ -19,10 +19,12 @@ jobs:
- "postgres://postgres:postgres@localhost/postgres"
- "sqlite:///takahe.db"
include:
- db: "sqlite:///takahe.db"
search: false
- db: "postgres://postgres:postgres@localhost/postgres"
db_name: postgres
search: true
- db: "sqlite:///takahe.db"
db_name: sqlite
search: false
services:
postgres:
image: postgres:15