-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (34 loc) · 1.18 KB
/
tests.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
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python 3.10 env for running unittest tests...
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install python3 requirements...
uses: knicknic/[email protected]
with:
linux: cd /home/runner/work/purpleair_api/purpleair_api/ ;
python -m pip install --upgrade wheel ;
python -m pip install --upgrade setuptools ;
python -m pip install --upgrade pip ;
python -m pip install coverage ;
python -m pip install requests_mock ;
- name: Run unit tests...
uses: knicknic/[email protected]
with:
linux: cd /home/runner/work/purpleair_api/purpleair_api/tests ;
coverage run -m unittest && coverage json ;
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}