Skip to content

Commit

Permalink
Create macOS.yml (#1)
Browse files Browse the repository at this point in the history
* Create macOS.yml

* Update macOS.yml
  • Loading branch information
0xLeif authored Nov 2, 2023
1 parent 77f4133 commit 5b3720c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift

name: macOS

on:
push:
branches: ["**"]

jobs:
build:
runs-on: macos-13

steps:
- uses: swift-actions/setup-swift@v1
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- uses: actions/checkout@v3
- name: Build for release
run: swift build -v -c release

0 comments on commit 5b3720c

Please sign in to comment.