Skip to content

[Tools] UbuntuでもCIを実行 #1

[Tools] UbuntuでもCIを実行

[Tools] UbuntuでもCIを実行 #1

Workflow file for this run

name: Swift on Ubuntu 22.04
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: swift-actions/setup-swift@150267bf6ba01f9d942a4bd55aa2f35ba586767d
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