From 6a61d7277acd4452e4ccaf16875ef48164115e75 Mon Sep 17 00:00:00 2001 From: Will Crichton Date: Sun, 2 Jul 2023 10:42:58 -0400 Subject: [PATCH] Get tests to run for pull requests in CI --- .github/workflows/main.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d1fef2..32ceb57 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,5 +1,15 @@ name: Tests -on: [push, pull_request] + +on: + push: + branches: + - "**" + tags-ignore: + - "v*" + pull_request: + branches: + - "**" + jobs: tests: runs-on: ubuntu-latest