-
-
Notifications
You must be signed in to change notification settings - Fork 50
20 lines (19 loc) · 585 Bytes
/
test.yml
File metadata and controls
20 lines (19 loc) · 585 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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