Skip to content

Commit 1de11fa

Browse files
authored
Use codecov OIDC and action copy edit (#182)
1 parent 40ff140 commit 1de11fa

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.github/workflows/deploy_docs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,19 @@ jobs:
2121
- name: Setup python
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: "3.11"
24+
python-version: "3.12"
2525

2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip setuptools wheel
2929
python -m pip install -e .[docs]
3030
31+
- name: Test that docs build without error
32+
if: github.event_name == 'pull_request'
33+
run: mkdocs build --strict
34+
3135
- name: Deploy docs to GitHub Pages
3236
if: github.event_name == 'push'
3337
run: mkdocs gh-deploy --strict --force
3438

35-
- name: Test that docs build without error
36-
if: github.event_name == 'pull_request'
37-
run: mkdocs build --strict
39+

.github/workflows/make_release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,3 @@ jobs:
4444
4545
- name: Upload to PyPI
4646
uses: pypa/gh-action-pypi-publish@release/v1
47-

.github/workflows/reusable_run_tox_test.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,3 @@ jobs:
7878
- name: Coverage
7979
if: ${{ inputs.coverage }}
8080
uses: codecov/codecov-action@v5
81-
with:
82-
files: ./coverage.xml
83-
flags: unittests
84-
name: codecov-umbrella
85-
fail_ci_if_error: false

0 commit comments

Comments
 (0)