2023-11-19 23:38:51 +02:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
- main
|
|
|
|
tags-ignore:
|
|
|
|
- v*
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: catthehacker/ubuntu:act-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-11-20 00:47:41 +02:00
|
|
|
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
2023-11-19 23:38:51 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v3
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
env:
|
|
|
|
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install tox tox-gh-actions
|
|
|
|
- name: Test with tox
|
2023-11-20 00:08:09 +02:00
|
|
|
env:
|
|
|
|
RMV_TOKEN: ${{ secrets.RMV_TOKEN }}
|
2023-11-19 23:38:51 +02:00
|
|
|
run: tox
|
|
|
|
|