Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Travis with GitHub Actions #739

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
Use if: always() to report failed status
  • Loading branch information
abitrolly authored Jul 11, 2023
commit 774824e45edbbc076e753c3be2923442ed19db69
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
python -m pip install pylama
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint
continue-on-error: true
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
pip install pylama && python -m pylama -i W,E501 pydub/
- name: Test
if: always()
run: |
python test/test.py