Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Oct 25, 2024
1 parent 26384c7 commit b8c4fd9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

jobs:

lint-build:
lint:
name: Linting
runs-on: ubuntu-latest
strategy:
Expand All @@ -38,7 +38,7 @@ jobs:
run: |
ruff format --check .
docs-build:
docs:
name: Docs
runs-on: ubuntu-latest
strategy:
Expand All @@ -58,7 +58,7 @@ jobs:
cd docs
make html SPHINXOPTS="-W --keep-going"
test-builds:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
run: |
pytest -v tests
test-pyinstaller-build:
test-pyinstaller:
name: Test pyinstaller
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b8c4fd9

Please sign in to comment.