Skip to content

Commit

Permalink
Created SunKit.yml (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
davideilmito authored Nov 3, 2024
1 parent f883b1f commit a18a6f7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/SunKit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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: Swift

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v4

- name: List available Xcode versions
run: ls /Applications | grep Xcode
- name: Set up Xcode version
run: sudo xcode-select -s /Applications/Xcode_16.1.app/Contents/Developer
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit a18a6f7

Please sign in to comment.