diff --git a/.github/workflows/lint_and_test.yaml b/.github/workflows/lint_and_test.yaml index ee524ee..646e679 100644 --- a/.github/workflows/lint_and_test.yaml +++ b/.github/workflows/lint_and_test.yaml @@ -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