Skip to content

Added workflow to make automatic releases on tag pushes #8

Added workflow to make automatic releases on tag pushes

Added workflow to make automatic releases on tag pushes #8

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: Unit Tests
on:
pull_request:
branches:
- 'main'
jobs:
tests:
runs-on: 'ios'
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build
- name: Run tests
run: swift test