Skip to content

Merge pull request #75 from RunningBack33/preview-devices #182

Merge pull request #75 from RunningBack33/preview-devices

Merge pull request #75 from RunningBack33/preview-devices #182

Workflow file for this run

# 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:
name: Run ${{ matrix.xcode }}
runs-on: ${{ matrix.runsOn }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- xcode: "Xcode_15.0.1"
runsOn: macos-13
- xcode: "Xcode_14.3.1"
runsOn: macos-13
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app
- name: Build Prefire
run: make build
- name: Run PrefireExecutable Tests
run: make test