Merge pull request #37 from logos-messaging/test-ci

chore: add ci for tests
This commit is contained in:
kaichao 2025-12-06 11:24:06 +08:00 committed by GitHub
commit 1104fa2cb2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

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

@ -0,0 +1,23 @@
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/