add py 3.8 for tests

This commit is contained in:
Schrolli91 2020-04-17 23:38:14 +02:00
parent 24f310e56f
commit 85b7cb3468
No known key found for this signature in database
GPG key ID: 0AE96912A20E9F5F

View file

@ -9,22 +9,27 @@ jobs:
max-parallel: 3 max-parallel: 3
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
python-version: [3.5, 3.6, 3.7] python-version: [3.5, 3.6, 3.7, 3.8]
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Set up Python ${{matrix.python-version}} at ${{matrix.os}} - name: Set up Python ${{matrix.python-version}} at ${{matrix.os}}
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: ${{matrix.python-version}} python-version: ${{matrix.python-version}}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt
mkdir log/ mkdir log/
- name: Test with pytest - name: Test with pytest
run: | run: |
pytest -c 'test/pytest.ini' pytest -c 'test/pytest.ini'
- name: Save artifacts - name: Save artifacts
uses: actions/upload-artifact@master uses: actions/upload-artifact@master
with: with: