diff options
| author | J08nY | 2022-12-08 14:06:08 +0100 |
|---|---|---|
| committer | J08nY | 2022-12-08 14:06:08 +0100 |
| commit | cd2ef10fa5262d559d744109228f79f5a06815a1 (patch) | |
| tree | 34ec538176ef06430b4ed2a000d9920a0d7561f9 /.github | |
| parent | 846144e9b7352d2962ae9f87474b5840a36405d3 (diff) | |
| download | sec-certs-cd2ef10fa5262d559d744109228f79f5a06815a1.tar.gz sec-certs-cd2ef10fa5262d559d744109228f79f5a06815a1.tar.zst sec-certs-cd2ef10fa5262d559d744109228f79f5a06815a1.zip | |
Add codecov and rename workflow jobs for consistency.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/tests.yml | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d62b62b4..95de7f7b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,7 +3,7 @@ on: push: workflow_dispatch: jobs: - run-mypy: + mypy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d8f5d5f5..255b6cac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ env: DEBIAN_FRONTEND: noninteractive jobs: - run-test: + test: runs-on: ubuntu-22.04 steps: - name: Install Poppler @@ -22,3 +22,5 @@ jobs: pip install -r requirements/test_requirements.txt - name: Run tests run: pytest --cov=sec_certs tests + - name: Code coverage upload + uses: codecov/codecov-action@v3 |
