Skip to content

Commit

Permalink
add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
falk-werner committed Jan 27, 2024
1 parent b2cc3e4 commit bfc2255
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:

jobs:
test:
name: Test
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
- name: Unit Test (Backend)
working-directory: src-tauri
run: cargo test

0 comments on commit bfc2255

Please sign in to comment.