We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d542e commit 46719a3Copy full SHA for 46719a3
1 file changed
.github/workflows/pytest.yaml
@@ -1,7 +1,8 @@
1
name: Pytest
2
3
-env:
4
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+ env:
5
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
6
7
on:
8
push:
@@ -44,5 +45,7 @@ jobs:
44
45
- name: Install dependencies
46
run: |
47
uv pip install --python $(which python) -e '.[dev]'
48
+ - name: Write .env with GH_TOKEN
49
+ run: echo "GITHUB_TOKEN=${GH_TOKEN}" > .env
50
- name: Run pytest
51
run: pytest -v --cov --cov-branch --cov-report=xml -n auto
0 commit comments