-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (43 loc) · 1.19 KB
/
python-app.yml
File metadata and controls
49 lines (43 loc) · 1.19 KB
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
permissions:
contents: read
pull-requests: write
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
# Install a specific version of uv.
version: "0.9.18"
enable-cache: true
- name: Install dependencies
run: |
uv sync --locked --all-extras --dev
- name: Lint with flake8 and run mypy
run: |
uv run poe lint
- name: Test with pytest
run: |
uv run poe coverage
- name: Test coverage report
uses: orgoro/coverage@v3.1
if: ${{ github.event_name == 'pull_request' }}
with:
coverageFile: ./coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}