LibBotUniversal/.gitea/workflows/tests.yml

33 lines
725 B
YAML
Raw Normal View History

2023-08-06 20:11:16 +03:00
name: Tests
on:
2023-08-07 12:40:50 +03:00
push:
2023-08-07 12:24:48 +03:00
branches:
2023-08-07 12:40:50 +03:00
- main
2023-08-07 12:21:49 +03:00
tags-ignore:
2023-08-07 12:40:50 +03:00
- v*
pull_request:
2023-08-06 20:11:16 +03:00
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