Skip to content

chore: Updated changelog #3064

chore: Updated changelog

chore: Updated changelog #3064

name: pull-request-unittests
on:
workflow_dispatch:
push:
branches-ignore:
- dev/1.x
jobs:
test:
timeout-minutes: 75
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows]
python-version: ["3.8"]
include:
- os: macos
python-version: "3.8"
name: 'test (${{ matrix.os }} - py${{ matrix.python-version }})'
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
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 }}