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 96f25c1 commit a8a174dCopy full SHA for a8a174d
1 file changed
.github/workflows/build.yml
@@ -1,18 +1,21 @@
1
name: Build
2
3
-on:
4
- push:
5
- branches: [main]
6
- pull_request:
7
+on: [push, pull_request, workflow_dispatch]
+
+permissions: {}
+env:
8
+ FORCE_COLOR: 1
9
10
jobs:
11
build:
12
runs-on: ubuntu-latest
13
steps:
- - uses: actions/checkout@v2
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ persist-credentials: false
17
- name: Setup Python
- uses: actions/setup-python@v2
18
+ uses: actions/setup-python@v5
19
with:
20
python-version: 3.9
21
- name: Check configuration
0 commit comments