Add README.md #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 libdbus-1-dev libgirepository1.0-dev | |
- uses: getsentry/[email protected] | |
with: | |
python-version: '3.12' | |
install-cmd: pip install -r requirements.txt | |
- run: python -m unittest |