Skip to content

Add CI pipeline

Add CI pipeline #5

Workflow file for this run

name: PR_checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run unit tests
run: swift test -v