Skip to content

Fix all unit tests for both surface and solids models (#1720) #2720

Fix all unit tests for both surface and solids models (#1720)

Fix all unit tests for both surface and solids models (#1720) #2720

Workflow file for this run

name: pull_request
run-name: >-
${{github.event.pull_request.title}}
(#${{github.event.number}})
on:
pull_request:
branches:
- develop
- backports/**
paths-ignore:
- '**.rst'
- '**.md'
- 'scripts'
- '.jenkins'
- '!scripts/cmake-presets/ci*'
- '!scripts/ci'
- '!scripts/build.sh'
concurrency:
group: pr-${{github.ref}}-${{github.event.number}}-${{github.workflow}}
cancel-in-progress: true
jobs:
metadata:
name: "Save job metadata"
runs-on: ubuntu-24.04
steps:
# Event file is needed for EnricoMi/publish-unit-test-result-action
- name: Upload event file
uses: actions/upload-artifact@v4
with:
name: event-file
path: ${{github.event_path}}
doc:
uses: ./.github/workflows/doc.yml
build-spack:
uses: ./.github/workflows/build-spack.yml
# Specifying a dependent job allows us to select a single "requires" check in the project GitHub settings
all:
if: ${{always()}}
needs:
- doc
- build-spack
runs-on: ubuntu-24.04
steps:
- name: THIS IS NOT THE FULL CI
run: "false"
# vim: set nowrap tw=100: