diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 42844ee..d283870 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -5,17 +5,16 @@ name: Swift on: push: - branches: [ "main" ] + branches: ["main"] pull_request: - branches: [ "main" ] + branches: ["main"] jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v3 - - name: Set up Swift - uses: swift-actions/setup-swift@v1 # This line sets up Swift + - uses: swift-actions/setup-swift@v1 # This line sets up Swift - name: Build run: swift build -v - name: Run tests