Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterXY89 committed Dec 8, 2023
2 parents a6b31ef + 5cdbc21 commit faf7daa
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ jobs:

- name: Install dependencies
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
$CONDA/bin/conda env update --file environment.yml --name adl
conda env update --file environment.yml --name adl
- name: Lint with flake8
run: |
$CONDA/bin/conda install flake8
conda install flake8
# Lint using flake8 with settings from .flake8 file
$CONDA/bin/flake8 --config .flake8
flake8 --config .flake8
- name: Test with pytest
run: |
$CONDA/bin/conda install pytest
$CONDA/bin/pytest
conda install pytest
pytest

0 comments on commit faf7daa

Please sign in to comment.