Skip to content

Commit

Permalink
CI: Improve the job names of GitHub Actions (jointakahe#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
shuuji3 authored Dec 8, 2022
1 parent 1440ee9 commit 08dae90
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 08dae90

Please sign in to comment.