1
0
mirror of https://github.com/cmur2/python-bme680.git synced 2024-06-17 16:34:47 +02:00
python-bme680/.github/workflows/test.yml

38 lines
827 B
YAML
Raw Normal View History

2020-11-14 11:57:49 +01:00
name: Python Tests
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.4, 3.5, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: |
python -m pip install --upgrade setuptools tox
- name: Run Tests
working-directory: library
run: |
tox -e py
- name: Coverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
working-directory: library
run: |
python -m pip install coveralls
coveralls
if: ${{ matrix.python == '3.8' }}