Handle Run creation errors in __init__
.
#492
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unittests | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
test: | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu, windows, macos ] | |
python-version: [ "3.9" ] | |
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 }})' |