32 lines
654 B
YAML
32 lines
654 B
YAML
name: Pytest
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, stable ]
|
|
pull_request:
|
|
branches: [ master, stable ]
|
|
|
|
jobs:
|
|
pytest:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: [3.8]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install --upgrade pip poetry
|
|
poetry install
|
|
|
|
- name: Test with pytest
|
|
run: |
|
|
ls
|
|
poetry run pytest --cov=butterrobot --cov=butterrobot_plugins_contrib
|