Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
connorslade committed Nov 23, 2023
1 parent ebeda6f commit 8e0ee38
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build

on: [push]

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2

- name: Build
run: cargo build
13 changes: 7 additions & 6 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[midi]
channel = 0
keymap = [
{ key = 'KeyW', note = 59 },
{ key = 'UpArrow', note = 60 },
{ key = 'DownArrow', note = 62 },
{ key = 'LeftArrow', note = 64 },
{ key = 'RightArrow', note = 65 },
{ key = 'Space', note = 67 },
{ key = 'KeyW', note = 59 }, # B
{ key = 'UpArrow', note = 60 }, # C
{ key = 'DownArrow', note = 62 }, # D
{ key = 'LeftArrow', note = 64 }, # E
{ key = 'RightArrow', note = 65 }, # F
{ key = 'Space', note = 67 }, # G
{ key = 'KeyM', note = 69 }, # A
]

0 comments on commit 8e0ee38

Please sign in to comment.