blob: 946d2fc6fc52c29af9640eeb5c39f86cad790920 [file] [log] [blame]
ricolin51a0a302024-11-01 20:46:49 +08001name: unuttests
2
3on:
4 workflow_dispatch:
5 push:
6 branches:
7 - 'main'
8 tags:
9 - 'v*'
10 pull_request:
11 branches:
12 - 'main'
13
14jobs:
15 unuttest:
16 runs-on: ubuntu-latest
17 steps:
18 - uses: actions/checkout@v3
19
20 - name: Setup Python
21 uses: actions/setup-python@v4
22
23 - name: Install dependencies
24 run: |
25 sudo apt-get update
26 sudo apt-get install -y tox
27
28 - name: Run tox -e py3
29 run: tox -e py3