Skip to content

Commit 1104fa2

Browse files
authored
Merge pull request #37 from logos-messaging/test-ci
chore: add ci for tests
2 parents 4386521 + be906d7 commit 1104fa2

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: test
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
paths-ignore:
8+
- '**README.md'
9+
- '.gitignore'
10+
- 'LICENSE'
11+
jobs:
12+
tests-tasks:
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, macOS-latest, windows-latest]
16+
runs-on: ${{ matrix.os }}
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v6
20+
- name: Update
21+
run: make update
22+
- name: Tests
23+
run: make tests

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,7 @@ waku_handler.moc.cpp
8787

8888
# Nix build result
8989
result
90+
91+
# App data
92+
.registry/
93+
.savedkeys/

0 commit comments

Comments
 (0)