This repository has been archived by the owner on Aug 27, 2023. It is now read-only.
remove convert_unicode flag #266
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |