LibBotUniversal/.gitea/workflows/tests.yml

26 lines
571 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:14:44 +03:00
python-version: ["3.8.17", "3.9.17", "3.10.12", "3.11.3"]
2023-08-06 20:11:16 +03:00
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox