Skip to content

Build and Test

Build and Test #21

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
schedule:
- cron: "15 8 * * 1"
jobs:
nextstep:
runs-on: macos-latest
steps:
- name: Select latest available Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: 12.2
- 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