diff options
| author | Jack O'Connor <[email protected]> | 2020-04-02 10:23:46 -0400 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-04-02 10:23:46 -0400 |
| commit | e3069da68e58d280e54c5bfc36a8182117d34b41 (patch) | |
| tree | 78992b31a142d270d450005ed8ed90edc9543fb7 | |
| parent | 5e82396d80df7b8655ed17e39f1fadedf3a78e79 (diff) | |
only run CI on branches and PRs, not tags
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
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" |
