Skip to content

Commit

Permalink
Merge pull request #12 from MahmoudHousam/ci_cd_testing_workflow
Browse files Browse the repository at this point in the history
Integrate tests into GitHub Actions workflow
  • Loading branch information
MahmoudHousam authored Dec 15, 2024
2 parents 8a4aa17 + fb3ae8b commit 63a573c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest tests/

0 comments on commit 63a573c

Please sign in to comment.