From c9bd9c766a10b392f3f71d7e0a77624ea4771672 Mon Sep 17 00:00:00 2001 From: Albertino Padin Date: Fri, 24 Nov 2023 23:37:42 -0800 Subject: [PATCH] Set build workflow for all branches --- .github/workflows/swift.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index cda61a2..c4f3985 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -5,18 +5,17 @@ name: Swift on: push: - branches: [ "main" ] + branches: ["*"] pull_request: - branches: [ "main" ] + branches: ["*"] jobs: build: - runs-on: macos-latest steps: - - uses: actions/checkout@v3 - - name: Build - run: swift build -v - - name: Run tests - run: swift test -v + - uses: actions/checkout@v3 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v