LibBotUniversal/.gitea/workflows/tests.yml

29 lines
656 B
YAML
Raw Normal View History

2023-08-06 20:11:16 +03:00
name: Tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
2023-08-06 20:24:16 +03:00
python-version: ["3.8", "3.9", "3.10", "3.11"]
2023-08-06 20:11:16 +03:00
steps:
2023-08-06 20:24:16 +03:00
- uses: actions/checkout@v3
2023-08-06 20:11:16 +03:00
- name: Set up Python ${{ matrix.python-version }}
2023-08-06 20:24:16 +03:00
uses: actions/setup-python@v3
2023-08-06 20:11:16 +03:00
with:
python-version: ${{ matrix.python-version }}
2023-08-06 20:24:16 +03:00
architecture: "x64"
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
2023-08-06 20:11:16 +03:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox