Files
pyp2spec/.github/workflows/ci.yml
T
Karolina Surma 8a94dbf001 Use file_regression to generate the files to compare
This shall make the maintenance of data files a little easier in the
future.
2021-08-24 13:24:41 +02:00

21 lines
444 B
YAML

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
python -m pip install pytest pytest-regressions
- name: Run pytest
run: |
python -m pytest -v