Merge pull request #32 from pimoroni/actions

Add GitHub actions workflow
This commit is contained in:
Philip Howard 2020-11-14 11:02:54 +00:00 committed by GitHub
commit da98fcacb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 24 deletions

37
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,37 @@
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' }}

View File

@ -1,24 +0,0 @@
language: python
sudo: false
cache: pip
git:
submodules: true
matrix:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
- python: "2.7"
env: TOXENV=py27
install:
- pip install --ignore-installed --upgrade setuptools pip tox coveralls
script:
- cd library
- tox -vv
after_success: if [ "$TOXENV" == "py35" ]; then coveralls; fi