-
-
Notifications
You must be signed in to change notification settings - Fork 3
32 lines (24 loc) · 724 Bytes
/
build.yml
File metadata and controls
32 lines (24 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This workflow builds the project for all platforms.
# For more information see:
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Build Runner
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-latest # macos-15
steps:
- name: Checkout Code
uses: actions/checkout@v5
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable # 16.4
- name: Build All Platforms
run: bash scripts/build.sh