Skip to content

Commit

Permalink
run unit tests in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
larsheinen committed Mar 19, 2024
1 parent d46ae7d commit 3cc7f20
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/coverage.yml

This file was deleted.

57 changes: 57 additions & 0 deletions .github/workflows/testing_and_coverage_upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Deploy Function

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
coverage:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install Poetry Action
uses: snok/install-poetry@v1.3.4
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install project
run: poetry install --no-interaction
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Run tests
run: |
source .venv/bin/activate
pytest tests/
coverage report
#----------------------------------------------
# upload coverage report
#----------------------------------------------
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.1.0

0 comments on commit 3cc7f20

Please sign in to comment.