Skip to content

Commit

Permalink
Set build workflow for all branches
Browse files Browse the repository at this point in the history
  • Loading branch information
albertinopadin committed Nov 25, 2023
1 parent 39a80a5 commit c9bd9c7
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c9bd9c7

Please sign in to comment.