Skip to content

add dependencies between workflows #3

add dependencies between workflows

add dependencies between workflows #3

Workflow file for this run

name: ci
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
concurrency:
group: ci-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
cancel-in-progress: true
jobs:
formatting:
runs-on: [ ubuntu-latest ]
uses: ./.github/workflows/formatting.yaml

Check failure on line 16 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 16, Col: 5): Unexpected value 'uses' .github/workflows/ci.yaml (Line: 20, Col: 5): Unexpected value 'uses'
nvidia-gpu:
needs: [ formatting ]
runs-on: [ nvidia ]
uses: ./.github/workflows/nvidia-tests.yaml