Skip to content

misc fixes to automatic dependency tracking #1120

misc fixes to automatic dependency tracking

misc fixes to automatic dependency tracking #1120

name: pull-request-unittests
on:
workflow_dispatch:
push:
branches-ignore:
- master
jobs:
test:
timeout-minutes: 75
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
python-version: ["3.7"]
name: 'test (${{ matrix.os }} - py${{ matrix.python-version }})'
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run tests
uses: ./.github/actions/test-unit
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}
report_job: 'test (${{ matrix.os }} - py${{ matrix.python-version }})'
codecov-token: ${{ secrets.CODECOV_TOKEN }}