-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (33 loc) · 792 Bytes
/
lint.yaml
File metadata and controls
40 lines (33 loc) · 792 Bytes
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
name: Linting
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-22.04
timeout-minutes: 1
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
cache-dependency-path: |
pyproject.toml
requirements/*.txt
noxfile.py
- name: Make a virtualenv
run: python3 -m venv .venv
- name: Install requirements
run: |
source .venv/bin/activate
pip install uv==0.1.40
make install_python_packages
- name: Run linters
run: |
source .venv/bin/activate
make lint