Skip to content

Move CI yml to github workflows dir #1

Move CI yml to github workflows dir

Move CI yml to github workflows dir #1

Workflow file for this run

before_script:
- pip install poetry
- poetry install
- source `poetry env info --path`/bin/activate
stages:
- test
testing:
stage: test
tags:
- mtg_unit_tests
script:
- echo "This is the test stage"
- pytest --junitxml=report.xml
artifacts:
when: always