Skip to content

Merge pull request #19 from decargroup/feature/10-automatically-selec… #39

Merge pull request #19 from decargroup/feature/10-automatically-selec…

Merge pull request #19 from decargroup/feature/10-automatically-selec… #39

Workflow file for this run

name: Test package
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v2
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install .
- name: Test with pytest
run: |
pytest --exitfirst