-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 802 Bytes
/
Copy pathqa.yml
File metadata and controls
36 lines (30 loc) · 802 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
name: QA
on: pull_request
permissions:
contents: read
packages: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
qa:
name: QA
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
version: ['3.13', '3.14']
steps:
- name: Clone repository
uses: actions/checkout@v7
- name: Use Python
uses: actions/setup-python@v7.0.0
with:
python-version: ${{ matrix.version }}
- name: Install dependencies
run: |
curl --location --silent --show-error --fail https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
uv sync --dev
- name: Run QA
run: make qa