diff options
| author | Garrett D'Amore <garrett@damore.org> | 2020-01-02 18:15:50 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2020-01-02 18:15:50 -0800 |
| commit | 0e7186478ae94a9350329087178a4a06a2dc342c (patch) | |
| tree | 331ec72137ca40ad9977c4ae0112f4f1f372c610 /.github | |
| parent | 60198afcb25766a5ca060c9d3c368c4d37ad40da (diff) | |
| download | nng-0e7186478ae94a9350329087178a4a06a2dc342c.tar.gz nng-0e7186478ae94a9350329087178a4a06a2dc342c.tar.bz2 nng-0e7186478ae94a9350329087178a4a06a2dc342c.zip | |
GitHub actions need to run on pull requests too.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/darwin.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/linux.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/sanitizer.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/windows.yml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml index 10d40007..dd578d80 100644 --- a/.github/workflows/darwin.yml +++ b/.github/workflows/darwin.yml @@ -1,5 +1,5 @@ name: darwin -on: [push] +on: [push, pull_request] jobs: build: diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 35b60fcd..d7386fd9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,5 +1,5 @@ name: linux -on: [push] +on: [push, pull_request] jobs: build: diff --git a/.github/workflows/sanitizer.yml b/.github/workflows/sanitizer.yml index 7b49c624..120f807d 100644 --- a/.github/workflows/sanitizer.yml +++ b/.github/workflows/sanitizer.yml @@ -1,5 +1,5 @@ name: sanitize -on: [push] +on: [push, pull_request] jobs: sanitize: env: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 03054037..1badf1dc 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,5 +1,5 @@ name: windows -on: [push] +on: [push, pull_request] jobs: build: |
