diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..168f684 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,14 @@ +name: "Pre-Commit Check" + +on: + push: + branches: [ main ] + pull_request: + +jobs: + pre_commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 + - uses: pre-commit/action@v3.0.0 \ No newline at end of file