Skip to content

Commit

Permalink
🚧 do not check pushes to non-default branches
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Mar 28, 2021
1 parent ae99a31 commit 077fe41
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: macOS

on: [push, pull_request]
on:
push:
branches:
- develop
- master
pull_request:

jobs:
xcode:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Ubuntu

on: [push, pull_request]
on:
push:
branches:
- develop
- master
pull_request:

jobs:
ci_test_clang:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Windows

on: [push, pull_request]
on:
push:
branches:
- develop
- master
pull_request:

jobs:
mingw:
Expand Down

0 comments on commit 077fe41

Please sign in to comment.