Skip to content

Merge pull request #22 from iolanta-tech/upload-artifacts-for-master #1

Merge pull request #22 from iolanta-tech/upload-artifacts-for-master

Merge pull request #22 from iolanta-tech/upload-artifacts-for-master #1

Workflow file for this run

name: Baseline Tests
on:
push:
branches:
- master
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Test
shell: bash
run: poetry run j test-with-artifacts
- name: Upload pytest.xml
uses: actions/upload-artifact@v2
with:
name: pytest-xml
path: tests/artifacts/pytest.xml