Skip to content

Commit

Permalink
Merge pull request #12 from Eppo-exp/add-automated-tests
Browse files Browse the repository at this point in the history
Added automated tests
  • Loading branch information
tbuffington7 authored Aug 19, 2024
2 parents d78d379 + 5ee5799 commit 2c5f87b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Pytest

on:
pull_request:
branches:
- main
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Pytest
run: |
pytest tests

0 comments on commit 2c5f87b

Please sign in to comment.