Skip to content

[NFC] Minor change

[NFC] Minor change #59

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
Darwin:
name: Darwin
env:
DEVELOPER_DIR: "/Applications/Xcode_15.2.app/Contents/Developer"
runs-on: macos-14
steps:
- uses: actions/checkout@v1
- name: Test
run: |
swift build
swift test