Merge pull request #60 from shift/renovate/all-minor-patch #153
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: iOS CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
check-latest: true | |
- name: Ensure gomobile is installed. | |
run: go install golang.org/x/mobile/cmd/gomobile@latest && gomobile init | |
- name: Build | |
run: make build-ios | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ios | |
path: build/ios |