We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4386521 + be906d7 commit 1104fa2Copy full SHA for 1104fa2
.github/workflows/test.yml
@@ -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
@@ -87,3 +87,7 @@ waku_handler.moc.cpp
87
88
# Nix build result
89
result
90
91
+# App data
92
+.registry/
93
+.savedkeys/
0 commit comments