Skip to content

[WIP] Add Householder's method #18

[WIP] Add Householder's method

[WIP] Add Householder's method #18

Workflow file for this run

name: "Tests"
on:
pull_request:
branches:
- main
- 'release-'
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}
env:
JULIA_NUM_THREADS: 11
RETESTITEMS_NWORKERS: 4
RETESTITEMS_NWORKER_THREADS: 2
jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
group:
- "core"
- "adjoint"
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
group: "${{ matrix.group }}"
os: "${{ matrix.os }}"
secrets: "inherit"