Skip to content

Add job serialisation and save options. Save job to model dir when ru… #45

Add job serialisation and save options. Save job to model dir when ru…

Add job serialisation and save options. Save job to model dir when ru… #45

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
paths:
- elpis/**.py
- tests/**.py
pull_request:
branches:
- main
paths:
- elpis/**.py
- tests/**.py
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Setup poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.2.2"
- name: Poetry install
run: |
poetry install
- name: Run pytest
run: |
poetry run pytest -vv -m "not integration"