Skip to content

Commit

Permalink
Remove the -v flag from CI job steps
Browse files Browse the repository at this point in the history
  • Loading branch information
kkebo committed Jul 17, 2023
1 parent 916f653 commit f74d50c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ jobs:
- uses: actions/checkout@v3
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_15.0.app
- name: Get versions
run: |
xcodebuild -version
swift --version
- name: Build
run: swift build -v
run: swift build
- name: Run tests
run: swift test -v
run: swift test

0 comments on commit f74d50c

Please sign in to comment.