Skip to content

Merge pull request #12 from num42/add_github_actions_workflow #3

Merge pull request #12 from num42/add_github_actions_workflow

Merge pull request #12 from num42/add_github_actions_workflow #3

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
DEVELOPER_DIR: /Applications/Xcode_16.4.app/Contents/Developer
jobs:
test:
runs-on: macOS-15
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Test Build
run: swift build -Xswiftc -warnings-as-errors --enable-experimental-prebuilts
- name: Run Tests
run: swift test -Xswiftc -warnings-as-errors --enable-experimental-prebuilts