Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
chore: run integration and unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
miwurster committed Nov 16, 2023
1 parent 89147cd commit 42d51d8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@ name: Release Check
on: push

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest --ignore=tests/acceptance --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
release-check:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 42d51d8

Please sign in to comment.