diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-01-10 18:52:05 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-01-10 18:52:05 +0100 |
commit | 3454e6b986dae3378384e5c0cf18f1a2d03e5cbe (patch) | |
tree | 062800b1e28018210d4c5ea06203366ac4c19947 | |
parent | d2e008b649d8fe081eeb3ae7c1df66bd47313585 (diff) |
CI: Github Actions
* act on main branch
* added cron job
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b79667a..e8b7fdd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,13 +2,16 @@ name: Build on: push: branches: - - master + - main pull_request: branches: - - master + - main types: [opened, synchronize, reopened] release: types: [created] + schedule: + - cron: "0 13 * * 1" + jobs: test: name: ${{ matrix.os }} |