Skip to content

Commit

Permalink
add tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MorrisNein committed Dec 5, 2023
1 parent ef26e3f commit e3b143c
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/unit-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
python-version: [ 3.8, 3.9, '3.10' ]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
pip install pytest-cov
- name: Test with pytest
run: |
pytest --cov=pecapiku -s tests/unit
- name: Codecov-coverage
uses: codecov/codecov-action@v1

0 comments on commit e3b143c

Please sign in to comment.