From b6dc3ed3ad32dc6f39167fa514020dc224a2821f 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: 9443ad76b7ef3ef1f3d184ef60652947d2c30609 --- .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