Skip to content

[Feature] Home page

[Feature] Home page #1

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Run Unit Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Swift
uses: swift-actions/setup-swift@v1
with:
swift-version: '5.5'
- name: Run tests
run: swift test