Skip to content

fix workflow?

fix workflow? #13

Workflow file for this run

name: Lint and Format
on: [push, pull_request]
jobs:
wpiformat:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install wpiformat
run: pip3 install wpiformat==2023.36
- name: Run
run: wpiformat
- name: Check output
run: git --no-pager diff --exit-code HEAD