Skip to content

Test genio pipeline (BugFix) #15

Test genio pipeline (BugFix)

Test genio pipeline (BugFix) #15

name: Test provider-genio (from contrib area) with tox
on:
push:
branches: [ main ]
paths:
- contrib/genio/**
pull_request:
branches: [ main ]
paths:
- contrib/genio/**
workflow_dispatch:
jobs:
tox_test_genio_provider:
continue-on-error: true
name: Test Genio provider (from contrib area) with tox
defaults:
run:
working-directory: contrib/genio
runs-on: ubuntu-20.04
strategy:
matrix:
python: ["3.5", "3.6", "3.8", "3.10"]
include:
- python: "3.5"
tox_env_name: "py35"
- python: "3.6"
tox_env_name: "py36"
- python: "3.8"
tox_env_name: "py38"
- python: "3.10"
tox_env_name: "py310"
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Run tox
run: tox -e${{ matrix.tox_env_name }}