Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
ref: ${{ github.base_ref }}

- name: Verify Git Ref
run: |
git rev-parse HEAD
git log --oneline

- name: Set up Swift
uses: fwal/setup-swift@v1
with:
swift-version: '6.0' # Specify the Swift version you need
swift-version: '5.9' # Specify the Swift version you need

- name: Build Swift Package
run: swift build
Expand Down
Loading