Skip to content

[Feature] 「次候補」キーと「候補の選択」アクションを追加する (#54) #55

[Feature] 「次候補」キーと「候補の選択」アクションを追加する (#54)

[Feature] 「次候補」キーと「候補の選択」アクションを追加する (#54) #55

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
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: swift-actions/setup-swift@150267bf6ba01f9d942a4bd55aa2f35ba586767d
with:
swift-version: "5.9"
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v