Skip to content

Cache docker clients, so users aren't asked to re-auth #5

Cache docker clients, so users aren't asked to re-auth

Cache docker clients, so users aren't asked to re-auth #5

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: flake8
on:
push:
branches: ["trunk"]
pull_request:
branches: ["trunk"]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --with=dev
- name: Lint with flake8
run: |
poetry run flake8 . --count --show-source --statistics