-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (46 loc) · 1.56 KB
/
on-push.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
name: Linting & Test
on:
push
env:
PYTHON_VERSION: 3.9.18
POETRY_VERSION: 1.6.1
jobs:
linting:
uses: aarhusstadsarkiv/acautils/.github/workflows/linting_ruff-mypy.yml@main
version:
name: Test Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
project_name="$(grep --color=never 'name *= *".*"' pyproject.toml)"
project_name="${project_name%\"}"
project_name="${project_name#*\"}"
version_project="$(grep --color=never 'version *= *".*"' pyproject.toml)"
version_project="${version_project%\"}"
version_project="${version_project#*\"}"
version_package="$(grep --color=never '__version__ *= *".*"' "$project_name"/__version__.py)"
version_package="${version_package%\"}"
version_package="${version_package#*\"}"
test "$version_project" = "$version_package"
echo $?
pytest:
name: pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ env.POETRY_VERSION }}
- uses: actions/setup-go@v4
- run: poetry install
- run: go install github.com/richardlehane/siegfried/cmd/sf@latest
- name: Unit test
env:
GOPATH: /home/runner/go
run: |
poetry run coverage run -m pytest
poetry run coverage report -m --fail-under=80 --skip-empty --skip-covered