From e34484051fab75cee16b549dde448d7dacd95fad Mon Sep 17 00:00:00 2001 From: hoshi-hiyouga Date: Mon, 22 Jan 2024 23:13:04 +0800 Subject: [PATCH] Create tests.yml Former-commit-id: 087476da9959e425181bd11efd8f761688c950c9 --- .github/workflows/tests.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 00000000..02479584 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,19 @@ +name: tests + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + check_code_quality: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Check quality + run: | + make style && make quality