forked from blueswen/mkdocs-glightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Unit tests | ||
on: [pull_request] | ||
jobs: | ||
run: | ||
name: Run unit tests with codecov upload | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
USING_COVERAGE: '3.7' | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python-version: [3.7, 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 . | ||
- 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 "githubaction@gmail.com" | ||
pytest --cov=mkdocs_glightbox --cov-report=xml | ||