We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fde158c commit d832749Copy full SHA for d832749
.github/workflows/actions.yml
@@ -1,5 +1,16 @@
1
name: install-and-test-workflow
2
on: [push]
3
+# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
4
+# `contents` is for permission to the contents of the repository.
5
+# `pull-requests` is for permission to pull request
6
+permissions:
7
+ contents: write
8
+ checks: write
9
+ pull-requests: write
10
+
11
+env:
12
+ UV_SYSTEM_PYTHON: true
13
14
jobs:
15
install-and-test:
16
runs-on: ubuntu-latest
0 commit comments