Bump requests from 2.31.0 to 2.32.0 #191
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: Validation | |
on: | |
push: | |
branches: [ default ] | |
pull_request: | |
branches: [ default ] | |
jobs: | |
flake8: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Path | |
run: | | |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV | |
echo "PIPX_BIN_DIR=$HOME/.local/bin" >> $GITHUB_ENV | |
- name: Install Base Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install python3-venv pipx | |
pipx install poetry | |
- name: Install Python Dependencies | |
run: | | |
poetry install | |
- name: Run Validation | |
run: | | |
poetry run flake8 src |