Skip to content

Bump idna from 3.6 to 3.7 #19

Bump idna from 3.6 to 3.7

Bump idna from 3.6 to 3.7 #19

Workflow file for this run

name: Testing
on:
push:
branches:
- main
pull_request:
branches-ignore: []
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python: [3.7, 3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.X
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install the package itself
run: |
pip install poetry
poetry install --with dev
- name: Test with pytest
run: |
poetry run pytest --cov-report term --cov=easydev
- name: coveralls
run: |
pip install coveralls
coveralls --service=github
env:
GITHUB_TOKEN: ${{ github.token }}