Create ci.yml

Should fix #315
This commit is contained in:
IntegratedQuantum 2024-04-16 14:02:40 +02:00 committed by GitHub
parent aba651a998
commit b8b1ba49f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

21
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,21 @@
# This is a basic workflow that is manually triggered
name: Format Check
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
format_check:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Check Format
run: python3 "check_format.py"