Skip to content

Commit

Permalink
Trigger github workflows on wip branches
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Fergeau <[email protected]>
  • Loading branch information
cfergeau committed Jan 24, 2024
1 parent 4f25c8f commit cc15717
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- "main"
- "*"
tags:
- "*"
pull_request: {}
Expand All @@ -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"

0 comments on commit cc15717

Please sign in to comment.