Skip to content

Commit

Permalink
added ubuntu pytest workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
comane committed Jul 11, 2024
1 parent 02acde3 commit 4afc858
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Reportengine tests

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12' # Specify the Python version you need

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install hypothesis
pip install .
- name: Run tests
run: |
pytest

0 comments on commit 4afc858

Please sign in to comment.