ricolin | 51a0a30 | 2024-11-01 20:46:49 +0800 | [diff] [blame] | 1 | name: unuttests |
2 | |||||
3 | on: | ||||
4 | workflow_dispatch: | ||||
5 | push: | ||||
6 | branches: | ||||
7 | - 'main' | ||||
8 | tags: | ||||
9 | - 'v*' | ||||
10 | pull_request: | ||||
11 | branches: | ||||
12 | - 'main' | ||||
13 | |||||
14 | jobs: | ||||
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 |