[SPH] extend control on disc velocity profiles (#1873) #1190
This file contains hidden or 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: On Push | |
| # Controls when the workflow will run | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the "main" branch | |
| push: | |
| branches: | |
| - main | |
| - release/* | |
| workflow_dispatch: | |
| jobs: | |
| check_codecov_secret: | |
| name: Check Codecov secret | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Debug Codecov token | |
| run: | | |
| if [ -z "${{ secrets.CODECOV_TOKEN }}" ]; then | |
| echo "TOKEN IS EMPTY" | |
| exit 1 | |
| else | |
| echo "TOKEN EXISTS" | |
| fi | |
| main_workflow: | |
| name: CI | |
| uses: ./.github/workflows/main_workflow.yml | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| with: | |
| run_build_push_docker: true | |
| light_ci: false |