-
Notifications
You must be signed in to change notification settings - Fork 96
40 lines (38 loc) · 1013 Bytes
/
python.yml
File metadata and controls
40 lines (38 loc) · 1013 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: Python
on:
- push
- pull_request
permissions:
contents: read
jobs:
python:
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
steps:
- name: Check out GitHub repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install development dependencies
run: pip install -r requirements.txt
working-directory: ./applications/generate
- name: Run type check
run: mypy philadelphia
working-directory: ./applications/generate
- name: Run linter
uses: astral-sh/ruff-action@v3
with:
src: ./applications/generate
- name: Install application
run: pip install .
working-directory: ./applications/generate