From b8c4fd9ecf9adaae067763672990b55ef9219293 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Fri, 25 Oct 2024 12:42:33 +0200 Subject: [PATCH] tweak --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd43ef2..e30f1fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ concurrency: jobs: - lint-build: + lint: name: Linting runs-on: ubuntu-latest strategy: @@ -38,7 +38,7 @@ jobs: run: | ruff format --check . - docs-build: + docs: name: Docs runs-on: ubuntu-latest strategy: @@ -58,7 +58,7 @@ jobs: cd docs make html SPHINXOPTS="-W --keep-going" - test-builds: + tests: name: ${{ matrix.name }} runs-on: ${{ matrix.os }} strategy: @@ -95,7 +95,7 @@ jobs: run: | pytest -v tests - test-pyinstaller-build: + test-pyinstaller: name: Test pyinstaller runs-on: ubuntu-latest steps: @@ -158,7 +158,7 @@ jobs: publish: name: Publish release to Github and Pypi runs-on: ubuntu-latest - needs: [test-builds, release-build] + needs: [tests, release] if: success() && startsWith(github.ref, 'refs/tags/v') steps: - uses: actions/checkout@v4