Skip to content

SNP-1649 configure git actions to run tests #1

SNP-1649 configure git actions to run tests

SNP-1649 configure git actions to run tests #1

Workflow file for this run

name: Swift Test
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: '5.9'
- name: Build
run: swift build
- name: Build and run tests
run: swift test