Scheduled weekly dependency update for week 34 #1473
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: # Trigger on PRs to every branch | |
branches: | |
- '*' # Match every branch (Next line as well) | |
- '*/*' | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Install dependencies | |
run: pip install -U flake8 wheel setuptools | |
- name: Run Lint | |
run: flake8 -v | |
- name: Test Distribution | |
run: | | |
python setup.py sdist bdist_wheel | |
pip install -v . |