2023-08-06 20:11:16 +03:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
2023-08-06 22:11:06 +03:00
|
|
|
container: catthehacker/ubuntu:act-latest
|
2023-08-06 20:11:16 +03:00
|
|
|
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
|
|
|
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
|