-
Notifications
You must be signed in to change notification settings - Fork 160
53 lines (45 loc) · 1.13 KB
/
lint.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Linting
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
name: ruff and hooks.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- uses: pre-commit/[email protected]
with:
extra_args: --all-files --show-diff-on-failure
pyright:
name: Check types
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: false
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: '3.9'
enable-cache: true
- name: Install dependencies with uv
run: |
uv pip install torch --extra-index-url https://download.pytorch.org/whl/cpu
uv pip install -e .[dev]
- name: Check types with pyright
run: |
uv run pyright sbi