Skip to content

⬆ Bump azure-devops from 6.0.0b4 to 7.1.0b4 #1497

⬆ Bump azure-devops from 6.0.0b4 to 7.1.0b4

⬆ Bump azure-devops from 6.0.0b4 to 7.1.0b4 #1497

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ master ]
paths:
- 'exporters/**'
- 'pyproject.toml'
- '.github/workflows/unittests.yml'
- 'Makefile'
pull_request:
branches: [ master ]
paths:
- 'exporters/**'
- 'pyproject.toml'
- '.github/workflows/unittests.yml'
- 'Makefile'
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
pyproject.toml
- name: Install dependencies
run: |
make dev-env
- name: Test with pytest
run: |
make unit-tests