This repository has been archived by the owner on Aug 25, 2024. It is now read-only.
generated from entelecheia/course-template
-
Notifications
You must be signed in to change notification settings - Fork 7
80 lines (69 loc) · 1.87 KB
/
lint_and_test.yaml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
name: lint & test
on:
workflow_call:
workflow_dispatch:
push:
branches:
- "*"
paths:
- "src/**"
- "tests/**"
- ".github/workflows/lint_and_test.yaml"
jobs:
build:
# Name the Job
name: test-code-base
# Set the agent to run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.9]
steps:
# Checkout the code base #
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
# install poetry
- name: Install poetry
run: pipx install poetry>=1.3.2
# set up python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
# initialize
- name: Initialize
run: make initialize
# install dependencies
- name: Install dependencies for linters
run: poe install-dev
# run linters
- name: Run linters
run: |
set -o pipefail
poe lint
# run unit tests
- name: Run unit-tests
run: |
set -o pipefail
poe tests-cov-fail
# add content to GitHub summary
- name: Pytest coverage GitHub summary
run: |
set -o pipefail
echo '# Coverage report' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
cat tests/pytest-coverage.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
echo '\n\n\n'
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}