-
-
Notifications
You must be signed in to change notification settings - Fork 15
38 lines (34 loc) · 1.03 KB
/
unittests.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
name: Unit tests
on: [push, pull_request, workflow_dispatch]
jobs:
run:
name: Run unit tests with codecov upload
runs-on: ${{ matrix.os }}
env:
USING_COVERAGE: '3.8'
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip3 install --upgrade pip
pip3 install --upgrade setuptools
pip3 install --upgrade wheel
pip3 install pyflakes
pip3 install -r tests/test_requirements.txt
pip3 install -e .
- name: Static code checking with pyflakes
run: |
pyflakes mkdocs_glightbox
- name: Run unit tests
run: |
git config --global user.name "Github Action"
git config --global user.email "[email protected]"
pytest --cov=mkdocs_glightbox