Skip to content

Feature/GitHub actions (#10) #14

Feature/GitHub actions (#10)

Feature/GitHub actions (#10) #14

Workflow file for this run

# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Tests
on:
push:
pull_request:
types: [opened]
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Build project
run: swift build -v | xcpretty
- name: Run tests
run: swift test -v | xcpretty