Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
Should fix #315
  • Loading branch information
IntegratedQuantum authored Apr 16, 2024
1 parent aba651a commit b8b1ba4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit b8b1ba4

Please sign in to comment.