Skip to content

Auto try to use stub on unknown type #56

Auto try to use stub on unknown type

Auto try to use stub on unknown type #56

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 Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Pick xcode 15.1
run: sudo xcode-select -s '/Applications/Xcode_15.1.app/Contents/Developer'
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v