Use URLRequestHeaderItem in Endpoint #29
Workflow file for this run
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: Build iOS | |
# 📜 https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Output XCode version | |
run: | | |
xcodebuild -version | |
- name: Build debug version | |
run: | | |
make build-ios | |
- name: Test debug version | |
run: | | |
make test-ios |