Skip to content

Commit

Permalink
Add unit test action
Browse files Browse the repository at this point in the history
  • Loading branch information
blueswen committed Nov 14, 2022
1 parent 6204375 commit 90faa13
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/unittests.yml
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

0 comments on commit 90faa13

Please sign in to comment.