Skip to content

Commit

Permalink
CHORE: Better CI job names
Browse files Browse the repository at this point in the history
  • Loading branch information
amilcarlucas committed Jan 16, 2025
1 parent 08746e4 commit 9b250be
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
types: [published]

jobs:
lint:
markdown-lint:
runs-on: ubuntu-latest
steps:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
types: [published]

jobs:
build:
pylint:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
12 changes: 1 addition & 11 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
types: [published]

jobs:
build:
pytest:

runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -61,13 +61,3 @@ jobs:
path: tests/coverage-${{ matrix.python-version }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

- name: Upload coverage report to Codecov
uses: codecov/[email protected]
with:
verbose: true
files: tests/coverage-3.9.xml
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() && matrix.python-version == '3.9' }}
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- "v*.*.*"

jobs:
deploy:
pypi_upload:

name: Upload release to PyPI
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
# cancel-in-progress: true

jobs:
build:
ruff:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
types: [published]

jobs:
build:
unittest:

runs-on: ${{ matrix.os }}
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

jobs:
build:
windows_installer:
runs-on: 'windows-latest'
strategy:
matrix:
Expand Down

0 comments on commit 9b250be

Please sign in to comment.