From 08dae900b72e7fdad56cd8d2a7a75422f289e993 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 9 Dec 2022 02:17:36 +0900 Subject: CI: Improve the job names of GitHub Actions (#130) --- .github/workflows/test.yml | 8 +++++--- 1 file 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 -- cgit v1.2.3