diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-09-08 17:20:45 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-09-08 17:20:45 +0900 |
commit | bc1cf11cc1712f9909071a0a07d08c63ae30e14f (patch) | |
tree | 35a8c1b4d98d0657ebc895bed46d7b523697b5ea /.github | |
parent | 72841ec12d5865b4f020dc23c64553deb2fe15d6 (diff) |
enable github actions on the dev branch
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-macos.yml | 4 | ||||
-rw-r--r-- | .github/workflows/build-ubuntu.yml | 4 | ||||
-rw-r--r-- | .github/workflows/codeql.yml | 4 | ||||
-rw-r--r-- | .github/workflows/test.yml | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index f64e2e7..7e527cd 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -2,9 +2,9 @@ name: build on macOS on: push: - branches: [ "main" ] + branches: [ "main", "dev" ] pull_request: - branches: [ "main" ] + branches: [ "main", "dev" ] env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index b2c703f..33385cb 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -2,9 +2,9 @@ name: build on ubuntu on: push: - branches: [ "main" ] + branches: [ "main", "dev" ] pull_request: - branches: [ "main" ] + branches: [ "main", "dev" ] env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5d3558b..4db6e9f 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,10 +13,10 @@ name: "CodeQL" on: push: - branches: [ "main" ] + branches: [ "main", "dev" ] pull_request: # The branches below must be a subset of the branches above - branches: [ "main" ] + branches: [ "main", "dev" ] schedule: - cron: '35 11 * * 5' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9c9e459..4f34034 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,9 +2,9 @@ name: test on: push: - branches: [ "main" ] + branches: [ "main", "dev" ] pull_request: - branches: [ "main" ] + branches: [ "main", "dev" ] env: BUILD_TYPE: Release |