From 9a63e9f99ed4d8df1936771deae32507836a8272 Mon Sep 17 00:00:00 2001 From: fredkingham Date: Thu, 1 Sep 2022 21:08:44 +0100 Subject: [PATCH] Slight renaming of the workflows to stop the duplicate use of ubuntu in the name and to make the windows capitalization of python match the ubuntu --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61261bc84..646167a71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI jobs: # run python/js tests, coveralls and lint integration-test: - name: ${{ matrix.os }} python ${{ matrix.python-version }} + name: python ${{ matrix.python-version }} runs-on: ${{ matrix.os }} services: postgres: @@ -54,7 +54,7 @@ jobs: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} # make sure the python side of things works on windows other-os-tests: - name: ${{ matrix.os }} Python ${{ matrix.python-version }} + name: ${{ matrix.os }} python ${{ matrix.python-version }} runs-on: ${{ matrix.os }} strategy: fail-fast: false