From 04941a97bf286821557bef610a1306c1b1f96f43 Mon Sep 17 00:00:00 2001 From: Stas Uschakow <150824261+ThatStasGuy@users.noreply.github.com> Date: Mon, 19 Feb 2024 11:27:31 +0100 Subject: [PATCH] Create run-tests.yml Running tests automatically on all PRs and pushes to main branch. --- .github/workflows/run-tests.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/run-tests.yml diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml new file mode 100644 index 0000000..83c4207 --- /dev/null +++ b/.github/workflows/run-tests.yml @@ -0,0 +1,16 @@ +name: Run Tests + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + name: Run tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run check + run: make test