Skip to content

Commit

Permalink
Fix pytest workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yoland68 committed May 15, 2024
1 parent a97aedc commit 956cb2e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run pytest

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9' # Adjust the version as needed

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt # If you have other dependencies
- name: Run tests
run: |
pytest
File renamed without changes.

0 comments on commit 956cb2e

Please sign in to comment.