We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a65dd3 commit 2e0c9b7Copy full SHA for 2e0c9b7
.github/workflows/tests.yml
@@ -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