Add formatting check workflow

This commit is contained in:
Serene-Arc 2023-09-24 13:19:37 +10:00
parent e8bf993f6a
commit 5177b669b2

12
.github/workflows/formatting_check.yml vendored Normal file
View file

@ -0,0 +1,12 @@
name: formatting_check
run-name: Check code formatting
on: [push, pull_request]
jobs:
formatting_check:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
- uses: actions/checkout@v3
- uses: paolorechia/pox@v1.0.1
with:
tox_env: "format_check"