From 44bc17ed9e395d827cee0e5499863d5d169028d7 Mon Sep 17 00:00:00 2001 From: Kristofer Berggren Date: Sat, 3 Dec 2022 13:52:16 +0800 Subject: [PATCH] update issue templates, ci branches and gitignore --- .github/workflows/linux.yml | 10 ++++++++-- .github/workflows/macos.yml | 8 +++++++- .gitignore | 2 ++ 3 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6ea49c9..a95c944 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,10 +1,16 @@ name: Linux -on: [push, pull_request] +on: + pull_request: + push: + branches: + - master + - main + - dev/* jobs: linux-build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v1 diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 275c3c2..a4528a4 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,6 +1,12 @@ name: macOS -on: [push, pull_request] +on: + pull_request: + push: + branches: + - master + - main + - dev/* jobs: mac-build: diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed8a3ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +build +dbgbuild