Skip to content

Commit

Permalink
update job names
Browse files Browse the repository at this point in the history
  • Loading branch information
diehlbw committed May 28, 2024
1 parent f2ed6c3 commit c98a0ad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: "read-all"

jobs:
linting:
name: linting via pre-commit
name: Linting
runs-on: ubuntu-latest

steps:
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
pre-commit run --all-files
test-coverage:
name: Test base configuration with coverage
name: Coverage py3.10
runs-on: ubuntu-latest

steps:
Expand All @@ -44,19 +44,19 @@ jobs:
- name: Run tests
run: |
coverage run -m pytest
- name: Generate coverage report
- name: Generate xml
run: |
coverage xml
- name: Generate htmp report for inspection
- name: Generate html
if: failure()
run: |
coverage html
- name: Upload coverage
- name: Upload report
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-data
path: coverage/coverage.xml
path: coverage/*
if-no-files-found: error
test-packaging:
name: Test packaging
Expand Down

0 comments on commit c98a0ad

Please sign in to comment.