From 154657fac9b617fd5b4da3fb42ec3eb2fafdc806 Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Fri, 29 Dec 2023 19:09:56 -0500 Subject: [PATCH] add CI --- .github/workflows/pretty.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pretty.yml diff --git a/.github/workflows/pretty.yml b/.github/workflows/pretty.yml new file mode 100644 index 000000000..f2c1fd761 --- /dev/null +++ b/.github/workflows/pretty.yml @@ -0,0 +1,19 @@ +name: Pretty + +on: + push: + + pull_request: + + workflow_dispatch: + +jobs: + docs: + name: Code formatting + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Count + run: ./mfc.sh format diff