Skip to content

Bump docker/build-push-action from 5 to 6 #772

Bump docker/build-push-action from 5 to 6

Bump docker/build-push-action from 5 to 6 #772

Workflow file for this run

name: Static Checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[contrib]
- name: Lint with flake8
run: |
flake8 tardis tests setup.py
- name: Format with black
run: |
black tardis tests setup.py --diff --check --target-version py36