Skip to content

Prepare ploy_fabric 2.0.0. #4

Prepare ploy_fabric 2.0.0.

Prepare ploy_fabric 2.0.0. #4

Workflow file for this run

---
name: "CI"
on:
push:
jobs:
tests:
name: "Python ${{ matrix.python-version }} (${{ matrix.tox-envs }})"
runs-on: "ubuntu-latest"
env:
PY_COLORS: 1
strategy:
matrix:
include:
- python-version: "2.7"
tox-envs: "py27"
- python-version: "3.7"
tox-envs: "py37"
- python-version: "3.8"
tox-envs: "py38"
- python-version: "3.9"
tox-envs: "py39"
- python-version: "3.10"
tox-envs: "py310"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe -o nounset
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade virtualenv tox
- name: "Run tox targets for ${{ matrix.python-version }}"
run: |
set -xe -o nounset
python -m tox -a -vv
python -m tox -v -e ${{ matrix.tox-envs }} -- -v --color=yes