Skip to content

Template for btop

Template for btop #87

Workflow file for this run

# run the unittests
name: Test
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
sudo apt-get update && \
sudo apt-get install -y imagemagick
- name: Run tests
run: |
python -m unittest discover -s tests -v