Skip to content

Updates to support Python 3.7 #103

Updates to support Python 3.7

Updates to support Python 3.7 #103

Workflow file for this run

name: Format Check
on:
push:
paths:
- '**.py'
workflow_dispatch:
jobs:
pre-commit:
name: Format
runs-on: ubuntu-latest
steps:
# -------------------
# Checkout code
- uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
# -------------------
# Setup environment in remote runner
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: pre-commit/action@v3.0.0