Selaa lähdekoodia

ci: add run test job

pull/192/head
mingrammer 4 vuotta sitten
vanhempi
commit
362964de79
1 muutettua tiedostoa jossa 31 lisäystä ja 0 poistoa
  1. +31
    -0
      .github/workflows/test.yml

+ 31
- 0
.github/workflows/test.yml Näytä tiedosto

@@ -0,0 +1,31 @@
name: Run tests

on:
push:
branches:
- master
paths:
- '**.py'
pull_request:
branches:
- master
paths:
- '**.py'

jobs:
test:
strategy:
matrix:
python: ['3.6', '3.7', '3.8']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install poetry
run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
- name: Install libraries
run: poetry install
- name: Run all tests
run: python -m unittest -v tests/*.py

Ladataan…
Peruuta
Tallenna