-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (40 loc) · 1014 Bytes
/
lint-test.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
name: Lint and Test
on:
push:
branches: [ main, "v*"]
pull_request:
branches: [ main, "v*"]
jobs:
build-lint-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
env:
IMAGE_TAG: ${{ github.sha }}
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Get git tags
run: git fetch --prune --unshallow --tags
# Use pip to install dependencies
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
cache: true
cache-dependency-path: ./pyproject.toml
- name: Install dependencies
run: |
pdm install -G test
- name: Run linter
run: |
pdm run check
# Run tests
- name: Run tests
run: |
pdm run coverage
- name: Coveralls
uses: coverallsapp/[email protected]
with:
path-to-lcov: coverage.xml