summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2020-04-02 10:23:46 -0400
committerJack O'Connor <oconnor663@gmail.com>2020-04-02 10:23:46 -0400
commite3069da68e58d280e54c5bfc36a8182117d34b41 (patch)
tree78992b31a142d270d450005ed8ed90edc9543fb7 /.github
parent5e82396d80df7b8655ed17e39f1fadedf3a78e79 (diff)
only run CI on branches and PRs, not tags
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7b218dd..19408fc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,6 +1,11 @@
name: tests
-on: [push, pull_request]
+on:
+ push:
+ branches:
+ - "*"
+ # not on tags
+ pull_request:
env:
BLAKE3_CI: "1"