Fix working directory for swift test command

This commit is contained in:
hwachakarter
2026-04-22 09:32:12 +09:00
committed by GitHub
parent 25666f1659
commit c152ce069a
+23
View File
@@ -0,0 +1,23 @@
# 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: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
working-directory:: Sources/sonyalib
run: swift test -v