Skip to content

Commit

Permalink
github action updated for pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-vignal committed Sep 16, 2024
1 parent c009771 commit bb7be1f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,28 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
pip install flake8 pytest
python -m pip install --upgrade pip
pip install build flake8 pytest
if [ -f requirements.dev.txt ]; then pip install -r requirements.dev.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
python -m pytest
- name: Build python package
run: |
python setup.py sdist bdist_wheel
python -m build
- name: Deploy to PyPI
if: success() && startsWith(github.ref, 'refs/tags') && matrix.python-version == '3.10'
uses: pypa/gh-action-pypi-publish@master
Expand Down

0 comments on commit bb7be1f

Please sign in to comment.