Skip to content

Testing new action

Testing new action #20

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: test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: khlopko/setup-swift@f36fcbf962e861bb258a6d8d555c56fc75a42988
with:
swift-version: "main-snapshot"
- name: build
run: swift build
- name: run tests
run: swift test