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 be78720 commit 9162b4fCopy full SHA for 9162b4f
.github/workflows/python_simplified.yml
@@ -2,11 +2,11 @@ name: GitHub actions simplified
2
3
on:
4
push:
5
- branches: [ "**" ]
+ branches: ["**"]
6
pull_request:
7
8
repository_dispatch:
9
- types: [ "**" ]
+ types: ["**"]
10
11
permissions:
12
contents: read
@@ -15,7 +15,7 @@ jobs:
15
build:
16
strategy:
17
matrix:
18
- os: [ ubuntu-latest, macos-latest, windows-latest ]
+ os: [ubuntu-latest, macos-latest, windows-latest]
19
runs-on: ${{ matrix.os }}
20
21
steps:
@@ -37,7 +37,7 @@ jobs:
37
uv run examples/kem.py
38
uv run examples/sig.py
39
uv run examples/rand.py
40
- uv run examples/stfl_sig.py
+ # uv run examples/stfl_sig.py
41
42
- name: Run unit tests
43
run: |
0 commit comments