Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Delete .github/workflows/docc.yml #9

Delete .github/workflows/docc.yml

Delete .github/workflows/docc.yml #9

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: 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
- name: Test
run: swift test -v