Skip to content

Build and Test

Build and Test #186

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
schedule:
- cron: "35 10 * * 2"
jobs:
nextstep:
runs-on: macos-latest
steps:
- name: Select latest available Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: 13.2.1
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build Swift Debug Package
run: swift build -c debug
- name: Build Swift Release Package
run: swift build -c release