summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTAKAHASHI Shuuji2022-12-09 02:17:36 +0900
committerGitHub2022-12-08 10:17:36 -0700
commit08dae900b72e7fdad56cd8d2a7a75422f289e993 (patch)
tree58ac1d62561c83e4228a3d1756089f03d2f10700
parent1440ee9cebe2599239ed910b3f19cba6f79ff92c (diff)
downloadtakahe-08dae900b72e7fdad56cd8d2a7a75422f289e993.tar.gz
takahe-08dae900b72e7fdad56cd8d2a7a75422f289e993.tar.bz2
takahe-08dae900b72e7fdad56cd8d2a7a75422f289e993.zip
CI: Improve the job names of GitHub Actions (#130)
-rw-r--r--.github/workflows/test.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 9201f4c..19e6e41 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -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