Skip to content

Commit

Permalink
Chg(gha): rm dbl install of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jusjusjus committed Aug 16, 2024
1 parent d0f69b1 commit 391b40b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
test_mffpy:
# Name the job
name: Lint and Test
# Set the type of machine to run on
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6.7", "3.8", "3.9", "3.10", "3.11"]
# Set the type of machine to run on
runs-on: ubuntu-20.04
steps:
# Check out the latest commit from the current branch
- name: Checkout Current Branch
uses: actions/checkout@v4

- name: Setup Python { { matrix.python-version } }
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -40,7 +40,7 @@ jobs:
run: pip install .

- name: Install Development Dependences
run: pip install -r requirements.txt -r requirements-dev.txt
run: pip install -r requirements-dev.txt

- name: Linting
run: flake8
Expand Down

0 comments on commit 391b40b

Please sign in to comment.