A fix for outputting the details of a path that is calculating using … #2888
Workflow file for this run
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: CI | |
on: | |
push: | |
pull_request: | |
env: | |
# on CI, better dump stack trace in case there is an error | |
PLUMED_STACK_TRACE: yes | |
# use two threads for openMP tests | |
PLUMED_NUM_THREADS: 2 | |
# these are used to build required packages | |
CC: gcc | |
CXX: g++ | |
jobs: | |
linux: | |
uses: ./.github/workflows/linuxWF.yml | |
secrets: inherit | |
codecheck: | |
uses: ./.github/workflows/codecheckWF.yml | |
secrets: inherit | |
mac: | |
uses: ./.github/workflows/macWF.yml | |
secrets: inherit | |
docker: | |
uses: ./.github/workflows/dockerWF.yml | |
secrets: inherit | |
conda: | |
uses: ./.github/workflows/condaWF.yml | |
secrets: inherit |