1 parent 2ddd7c3 commit 9717805Copy full SHA for 9717805
1 file changed
.github/workflows/ci.yml
@@ -8,12 +8,16 @@ on:
8
9
jobs:
10
test:
11
+ permissions:
12
+ contents: read
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
python-version: ["3.13"]
17
steps:
18
- uses: actions/checkout@v6
19
+ with:
20
+ persist-credentials: false
21
- uses: actions/setup-python@v6
22
with:
23
python-version: ${{ matrix.python-version }}
@@ -27,6 +31,9 @@ jobs:
27
31
run: mypy ./src/runboat ./tests
28
32
- uses: codecov/codecov-action@v5
29
33
build-image:
34
35
36
+ packages: write
30
37
38
needs:
39
- test
0 commit comments