-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (62 loc) · 1.85 KB
/
pip-build-lint-test-coverage.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
54
55
56
57
58
59
60
61
62
63
64
65
name: Build Lint Test and Coverage
on:
push:
branches: [ main, "v*"]
pull_request:
branches: [ main, "v*"]
jobs:
build-lint-test-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Get git tags
run: git fetch --prune --unshallow --tags
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
cache: true
cache-dependency-path: ./pyproject.toml
- name: Install Testing Dependencies
run: |
pdm install -G test
- name: Lint
run: pdm run lint
- name: Test with coverage
run: pdm run coverage
- name: Coverage report to coveralls
uses: coverallsapp/[email protected]
with:
path-to-lcov: coverage.xml
- name: Run benchmarks
run: |
pdm run benchmark --benchmark-json bench.json
- name: Store main benchmark result
if: github.ref == 'refs/heads/main'
uses: benchmark-action/github-action-benchmark@v1
with:
name: Python Benchmark
tool: 'pytest'
output-file-path: bench.json
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
gh-pages-branch: gh-pages
- name: Compare benchmarks
if: github.event_name == 'pull_request'
uses: benchmark-action/github-action-benchmark@v1
with:
name: Python Benchmark
tool: 'pytest'
output-file-path: bench.json
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-always: true
fail-threshold: '200%'
alert-threshold: '150%'
auto-push: false