Skip to content

[Experimental] ConvertGraph周りのテストを増やしてバグを治す #137

[Experimental] ConvertGraph周りのテストを増やしてバグを治す

[Experimental] ConvertGraph周りのテストを増やしてバグを治す #137

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: Swift Build and Test
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
name: Swift on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: swift-actions/setup-swift@v1
with:
swift-version: 5.9
- uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: swift build -Xswiftc -strict-concurrency=complete -v
- name: Run tests
run: swift test -c release -Xswiftc -strict-concurrency=complete -v