From cc1571734d10b94545caf5ad75e0cf21ce1bb764 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Mon, 28 Aug 2023 11:29:41 +0200 Subject: [PATCH] Trigger github workflows on wip branches Signed-off-by: Christophe Fergeau --- .github/workflows/compile.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 3c41d4dc..df0a2d20 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -3,6 +3,7 @@ on: push: branches: - "main" + - "*" tags: - "*" pull_request: {} @@ -28,15 +29,15 @@ jobs: - name: Build run: make - name: Test - if: ${{ matrix.os }} != 'macOS-11' - run: echo '${{ matrix.os }}' && make test + if: matrix.os != "macOS-11" + run: echo '${{ matrix.os != "macOS-11" }}' && make test - name: vet run: go vet ./... - name: golangci-lint uses: golangci/golangci-lint-action@v3 - name: Upload vfkit artifact + if: matrix.os == "macOS-13" uses: actions/upload-artifact@v4 - if: ${{ matrix.os }} == 'macOS-13' with: name: Unsigned vfkit Universal Binary path: "./out/vfkit"