Skip to content

chore: Add GA workflow for PR merging into main branch: build and tes… #2

chore: Add GA workflow for PR merging into main branch: build and tes…

chore: Add GA workflow for PR merging into main branch: build and tes… #2

Workflow file for this run

name: Pull request builder
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run unit tests
run: swift test -v