Skip to content

Commit

Permalink
Add GitHub workflow to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyhs committed Nov 10, 2024
1 parent 0e0bbfa commit 2a70c2a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Tests

on:
pull_request:
push:

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install OS dependencies
run: |
sudo apt-get update
sudo apt-get install gobject-introspection libdbus-1-dev
- uses: getsentry/[email protected]
with:
python-version: '3.12'
install-cmd: pip install -r requirements.txt
- run: python -m unittest

0 comments on commit 2a70c2a

Please sign in to comment.