add an arm64 build (#45)

closes #45
This commit is contained in:
Ferdinand Schober
2024-03-21 17:14:33 +01:00
committed by GitHub
parent a491c0e9e3
commit 78c9de45c7
3 changed files with 58 additions and 4 deletions

View File

@@ -110,3 +110,23 @@ jobs:
with:
name: lan-mouse-macos
path: target/debug/lan-mouse
build-macos-aarch64:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: brew install gtk4 libadwaita
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check Formatting
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-features --all-targets -- --deny warnings
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: lan-mouse-macos-aarch64
path: target/debug/lan-mouse