Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

remove convert_unicode flag #266

remove convert_unicode flag

remove convert_unicode flag #266

Workflow file for this run

name: Python package
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
toxenv: [py37, py38, py39, lint]
steps:
- uses: actions/checkout@v1
- name: Build containers
run: ./compose build
- name: Run test
run: ./compose run tox -e ${{ matrix.toxenv }}
- name: Publish coverage
if: ${{ matrix.toxenv == 'py38' }}
run: ./compose run tox -e coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}