Skip to content

Commit

Permalink
update actions to @v4 and disable lint step
Browse files Browse the repository at this point in the history
  • Loading branch information
PeopleMakeCulture committed Jan 31, 2024
1 parent c56b6ed commit f8e975e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ on:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4 # update version to maintain consistency across workflows
- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Lint with flake8
run: |
pip install flake8
make lint
# deprecate: See lint.yml
# - name: Lint with flake8
# run: |
# pip install flake8
# make lint
- name: Test with pytest
run: |
make up-test
Expand Down

0 comments on commit f8e975e

Please sign in to comment.