Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions .github/workflows/lint_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.12'
-
- working-directory: exercise_2
run: ""


lint:
# Complete the lint job configuration
- name: Install Dependencies
run: |
pip install pytest
pip install black
pip install flake8
- name: run test2
working-directory: exercise_2
run:
pytest test_bad_code.py
- name: run flake8
working-directory: exercise_2
run:
pytest flake8