Skip to content

Bump idna from 3.4 to 3.6 (#442) #392

Bump idna from 3.4 to 3.6 (#442)

Bump idna from 3.4 to 3.6 (#442) #392

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Unit Testing
jobs:
chore:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
toxenv: [py38, flake8, functional]
include:
- toxenv: py38
python-version: "3.8"
- toxenv: flake8
python-version: "3.X"
- toxenv: functional
python-version: "3.11"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install virtualenv
run: |
pip install virtualenv
virtualenv --python=python3 .venv
- name: Print environment
run: |
source .venv/bin/activate
python --version
pip --version
- name: Install dependencies
run: |
source .venv/bin/activate
pip install tox
- name: Run Kinto
if: matrix.toxenv == 'functional'
run: |
source .venv/bin/activate
make run-kinto & sleep 5
- name: Tox
run: |
source .venv/bin/activate
tox -e ${{ matrix.toxenv }}
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
if: matrix.toxenv != 'flake8'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}