Skip to content

Commit

Permalink
Merge pull request #32 from NFDI4Chem/development
Browse files Browse the repository at this point in the history
fix: install flake8 in release-please
  • Loading branch information
CS76 authored Aug 3, 2023
2 parents 85c43c0 + 45ff613 commit 2388fb9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
- name: Analysing the code with pylint
run: |
flake8 --per-file-ignores="__init__.py:F401" --ignore E402,E501,W503 $(git ls-files '*.py') .
- name: Run test
run: |
python3 -m pytest -p no:warnings
# - name: Run test
# run: |
# python3 -m pytest -p no:warnings

release-please:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2388fb9

Please sign in to comment.