forked from Lightning-AI/lightning-thunder
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 918 Bytes
/
ci-checks.yml
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
31
32
33
name: General checks
on:
push:
branches: [main]
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: ${{ ! (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) }}
jobs:
precommit-run:
uses: Lightning-AI/utilities/.github/workflows/check-precommit.yml@v0.11.2
with:
python-version: "3.10"
check-schema:
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.11.2
with:
azure-dir: ".azure"
check-package:
uses: Lightning-AI/utilities/.github/workflows/check-package.yml@v0.11.2
with:
actions-ref: v0.11.2
import-name: "thunder"
artifact-name: dist-packages-${{ github.sha }}
testing-matrix: |
{
"os": ["ubuntu-latest", "macOS-latest", "windows-latest"],
"python-version": ["3.10", "3.11"]
}