diff options
| author | J08nY | 2025-11-30 18:02:02 +0100 |
|---|---|---|
| committer | J08nY | 2025-11-30 18:02:02 +0100 |
| commit | b602400a52ff42f64faf495a9e46dbb17c86a472 (patch) | |
| tree | fd40cfcc862115890e401f75398b99a7ccb04804 /.github/workflows | |
| parent | e09d15a667a5cc0285319c17ce6de806b9681d06 (diff) | |
| download | pyecsca-codegen-b602400a52ff42f64faf495a9e46dbb17c86a472.tar.gz pyecsca-codegen-b602400a52ff42f64faf495a9e46dbb17c86a472.tar.zst pyecsca-codegen-b602400a52ff42f64faf495a9e46dbb17c86a472.zip | |
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7285b84..ac9beee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,10 @@ name: Test -on: [push, pull_request] +on: + schedule: # Run every Monday at noon + - cron: '0 12 * * 1' + push: + pull_request: env: LLVM_CONFIG: /usr/bin/llvm-config-14 @@ -11,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: [ "3.9", "3.10", "3.11", "3.12" ] env: PYTHON: ${{ matrix.python-version }} steps: |
