Skip to content

Commit

Permalink
Run all of the CI except for Docker builds on any change
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesmz committed Jan 29, 2024
1 parent d274637 commit 7fe41ad
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ name: "CodeQL"

on:
push:
branches: [ 'master' ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ 'master' ]
types: [ opened, reopened, synchronize ]
schedule:
- cron: '6 13 * * 4'

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Lint

on:
push:
branches: [ $default-branch ]
pull_request:
types: [ opened, reopened, synchronize ]

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: C/C++ CI MacOS

on:
push:
branches: [ $default-branch ]
pull_request:
types: [ opened, reopened, synchronize ]

Expand Down Expand Up @@ -39,4 +38,4 @@ jobs:
- name: make check
run: make check
- name: apps tests
run: cd examples && ./run_tests.sh
run: cd examples && ./run_tests.sh
7 changes: 5 additions & 2 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: mingw
name: mingw

on: [push]
on:
push:
pull_request:
types: [ opened, reopened, synchronize ]

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: msvc

on: [push]
on:
push:
pull_request:
types: [ opened, reopened, synchronize ]

jobs:
compile:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: C/C++ CI

on:
push:
branches: [ $default-branch ]
pull_request:
types: [ opened, reopened, synchronize ]

Expand Down

0 comments on commit 7fe41ad

Please sign in to comment.