name: Test pipeline on: [push] jobs: test: runs-on: docker container: image: python:3 steps: - name: Check out repository run: | git clone --depth 1 --branch main https://git.athemis.de/Athemis/doi2dataset.git - name: Install dependencies run: | cd doi2dataset pip install -r requirements.txt pip install -r requirements-dev.txt - name: Run tests run: | pytest