[Design] キーボードフリック時のSuggestViewを変更 #217
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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", "develop" ] | |
pull_request: | |
branches: [ "main", "develop" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: swift-actions/setup-swift@150267bf6ba01f9d942a4bd55aa2f35ba586767d | |
with: | |
swift-version: "5.9" | |
- uses: actions/checkout@v3 | |
- name: Build | |
# TODO: add KeyboardViews | |
run: swift build --package-path AzooKeyCore --target SwiftUIUtils;swift build --package-path AzooKeyCore --target KeyboardThemes | |
- name: Run tests | |
run: echo "There is no test suits yet" |