Skip to content

Commit dbde348

Browse files
authored
Merge pull request #10 from dmsnback/ci_pytest
ci_pytest
2 parents c5292bd + 73e3294 commit dbde348

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,25 @@ jobs:
3030

3131
- name: Flake8 Check
3232
run: flake8 .
33+
34+
tests:
35+
name: Pytest
36+
runs-on: ubuntu-latest
37+
38+
steps:
39+
- name: Checkout code
40+
uses: actions/checkout@v4
41+
42+
- name: Setup Python
43+
uses: actions/setup-python@v4
44+
with:
45+
python-version: "3.11"
46+
47+
- name: Upgrade pip
48+
run: python -m pip install --upgrade pip
49+
50+
- name: Install Dependencies
51+
run: pip install -r requirements.txt
52+
53+
- name: Run Pytest
54+
run: pytest -v

0 commit comments

Comments
 (0)