From 9c3c5436b57a6528f283efbd67777f3b5e0650b2 Mon Sep 17 00:00:00 2001 From: Serene-Arc Date: Sat, 3 Dec 2022 15:49:41 +1000 Subject: [PATCH] Add formatting check option for code --- .github/workflows/formatting_check.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/formatting_check.yml diff --git a/.github/workflows/formatting_check.yml b/.github/workflows/formatting_check.yml new file mode 100644 index 0000000..498d6af --- /dev/null +++ b/.github/workflows/formatting_check.yml @@ -0,0 +1,11 @@ +name: formatting_check +run-name: Check code formatting +on: pull_request +jobs: + formatting_check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: paolorechia/pox@v1.0.1 + with: + tox_env: "format_check" \ No newline at end of file