Skip to content

Commit

Permalink
CI: Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Tkachenko authored and Stranger6667 committed Sep 27, 2019
1 parent 37c24ba commit 962921a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,27 @@ jobs:
file: ./coverage.xml
flags: unittests
name: codecov-py37

py38:
name: py38
runs-on: ubuntu-latest
steps:
- run: sudo add-apt-repository ppa:deadsnakes/ppa
- run: sudo apt-get update
- run: sudo apt-get install -y --no-install-recommends python3.8-dev python3.8-distutils
- uses: actions/checkout@master
- uses: actions/setup-python@v1
with:
python-version: '3.7'
- run: pip install tox coverage
- run: tox -e py38
- run: coverage combine
- run: coverage report
- run: coverage xml -i
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.0.2
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.xml
flags: unittests
name: codecov-py38

0 comments on commit 962921a

Please sign in to comment.