From a4f7fa4ad07600b5e4807eeec4f74dc3dd894e73 Mon Sep 17 00:00:00 2001 From: David Hotham Date: Sun, 21 Jul 2024 13:19:13 +0100 Subject: [PATCH] github admin --- .github/workflows/build.yml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e960253..e214a17 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,20 +1,28 @@ name: CI - on: push: - branches: [main] + branches: + - main pull_request: - branches: [main] + branches: + - main schedule: - - cron: "0 3 1 * *" - + - cron: 0 3 1 * * + workflow_dispatch: jobs: test: name: Test runs-on: ${{ matrix.os }} strategy: matrix: - build: [x86_64, x86_64-beta, x86_64-nightly, i686, macos] + build: + - x86_64 + - x86_64-beta + - x86_64-nightly + - i686 + - macos + - win64 + - win32 include: - build: x86_64 os: ubuntu-latest