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