Skip to content

Commit 2e0c9b7

Browse files
author
Ric Janus Sapasap
committed
Run tox in github workflow
1 parent 9a65dd3 commit 2e0c9b7

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run tests
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
12+
with:
13+
python-version: "3.11"
14+
- name: Install system deps
15+
run: sudo apt-get update && sudo apt-get install -y xmlsec1
16+
- name: Install tox
17+
run: pip install tox
18+
- run: tox

0 commit comments

Comments
 (0)