-
Notifications
You must be signed in to change notification settings - Fork 4
30 lines (28 loc) · 1.06 KB
/
ci-comprehensive.yml
File metadata and controls
30 lines (28 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Comprehensive CI
on:
workflow_dispatch:
pull_request:
types: [labeled, synchronize]
jobs:
test-full:
name: Tests (Python ${{ matrix.python-version }})
if: github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'requires-full-tests')
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
env:
SML_CSCS_API_KEY: ${{ secrets.SML_CSCS_API_KEY }}
SML_FIRECREST_CLIENT_ID: ${{ secrets.SML_FIRECREST_CLIENT_ID }}
SML_FIRECREST_CLIENT_SECRET: ${{ secrets.SML_FIRECREST_CLIENT_SECRET }}
SML_FIRECREST_SYSTEM: ${{ secrets.SML_FIRECREST_SYSTEM }}
SML_FIRECREST_TOKEN_URI: ${{ secrets.SML_FIRECREST_TOKEN_URI }}
SML_FIRECREST_URL: ${{ secrets.SML_FIRECREST_URL }}
SML_PARTITION: ${{ secrets.SML_PARTITION }}
SML_RESERVATION: ${{ secrets.SML_RESERVATION }}
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/setup
with:
python-version: ${{ matrix.python-version }}
- run: make _test-comprehensive