We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3f3c72 commit 2be59e4Copy full SHA for 2be59e4
.github/workflows/test.yml
@@ -14,15 +14,16 @@ jobs:
14
python: [3.7, 3.11]
15
steps:
16
- uses: actions/checkout@v4
17
- with:
18
- fetch-depth: 0
+ with: {fetch-depth: 0}
19
- uses: actions/setup-python@v5
20
with:
21
python-version: ${{ matrix.python }}
22
- name: Install
23
run: pip install -U -e .[dev]
24
- run: pytest
25
- uses: codecov/codecov-action@v4
+ with:
26
+ token: ${{ secrets.CODECOV_TOKEN }}
27
deploy:
28
needs: test
29
name: PyPI Deploy
@@ -33,11 +34,9 @@ jobs:
33
34
runs-on: ubuntu-latest
35
36
37
38
39
40
- python-version: '3.x'
+ with: {python-version: '3.x'}
41
- id: dist
42
uses: casperdcl/deploy-pypi@v2
43
0 commit comments