Skip to content

Commit

Permalink
change github actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
mjmader committed Dec 8, 2023
1 parent 6d406a8 commit 5af4b44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.9.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install -r requirements.txt
pip install -r test/requirements.txt
- name: Run tests
run: |
pip install -r test/requirements.txt
pytest

0 comments on commit 5af4b44

Please sign in to comment.