Skip to content

Bump setuptools from 68.0.0 to 70.0.0 #199

Bump setuptools from 68.0.0 to 70.0.0

Bump setuptools from 68.0.0 to 70.0.0 #199

Workflow file for this run

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