Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on:
pull_request:
branches:
- main
push:
branches:
- main

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
swift-package-test:
name: Swift Package Test (LocalPackage)
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run swift test
working-directory: LocalPackage
run: swift test

macos-build:
name: macOS Build (KeyMapRender)
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build app
run: xcodebuild -scheme KeyMapRender -destination 'platform=macOS' build
2 changes: 1 addition & 1 deletion LocalPackage/Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.2
// swift-tools-version: 6.0

import PackageDescription

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# KeyMapRender

[![CI](https://github.com/shsw228/KeyMapRender/actions/workflows/ci.yml/badge.svg)](https://github.com/shsw228/KeyMapRender/actions/workflows/ci.yml)

[日本語版 README](README.ja.md)

KeyMapRender is a macOS utility that shows a semi-transparent keyboard overlay while a configurable key is held down (or toggled), focused on Vial/VIA-compatible keyboards.
Expand Down
Loading