aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2021-03-31 16:08:48 -0700
committerGitHub <noreply@github.com>2021-03-31 16:08:48 -0700
commit2578a1afaf58712ea3c54eb51f86594455c4cafa (patch)
tree18c7f6c2060882ad7d430b5128f978a9c898f145 /.github/workflows/ci.yml
parent177de25ee64d13c71935ed3a1ec543f97a5d3741 (diff)
parentc3bb6c7d9304894a35a2229f4ceda76f745fc264 (diff)
Merge pull request #283 from google/coverage
Stop generating and uploading coverage in CI
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 323d6c2..fdd3021 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,7 +15,13 @@
#
name: CI
-on: [pull_request, push]
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - master
jobs:
build:
@@ -64,12 +70,8 @@ jobs:
run: |
make test-setup
keyctl link @u @s
- make coverage.out
+ make test
make test-teardown
- - name: Report coverage
- uses: shogo82148/actions-goveralls@v1
- with:
- path-to-profile: coverage.out
# This isn't working currently because qemu user-mode emulation doesn't
# support passing through the keyctl() system call and the fscrypt ioctls.