chore: add ci for tests

This commit is contained in:
kaichaosun 2025-12-05 14:26:34 +08:00
parent 438652114c
commit 3d310fc409
No known key found for this signature in database
GPG Key ID: 223E0F992F4F03BF
2 changed files with 28 additions and 0 deletions

24
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: test
on:
pull_request:
branches:
- main
paths-ignore:
- '**README.md'
- '.gitignore'
- 'LICENSE'
jobs:
tests-tasks:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Update
run: make update
- name: Tests
run: make tests

4
.gitignore vendored
View File

@ -87,3 +87,7 @@ waku_handler.moc.cpp
# Nix build result
result
# App data
.registry/
.savedkeys/