diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..0ce4637 --- /dev/null +++ b/.github/workflows/test.yml @@ -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 + \ No newline at end of file diff --git a/.gitignore b/.gitignore index 49dea5b..c345e40 100644 --- a/.gitignore +++ b/.gitignore @@ -87,3 +87,7 @@ waku_handler.moc.cpp # Nix build result result + +# App data +.registry/ +.savedkeys/ \ No newline at end of file