Skip to content

chore: update ci to allow for workflow disptach #64

chore: update ci to allow for workflow disptach

chore: update ci to allow for workflow disptach #64

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Build Source & Tests
run: swift build --build-tests
- name: Test
run: swift test --enable-test-discovery