Skip to content

Add docker build image. #44

Add docker build image.

Add docker build image. #44

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
inputs:
concurrency:
# A PR number if a pull request and otherwise the commit hash. This cancels
# queued and in-progress runs for the same PR (presubmit) or commit
# (postsubmit). The workflow name is prepended to avoid conflicts between
# different workflows.
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
jobs:
build_linux_packages:

Check failure on line 20 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 20, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build Linux Packages
needs: setup
uses: ./.github/workflows/build_linux_packages.yml
build_python_packages:
name: Build Python Packages
needs: setup
uses: ./.github/workflows/build_python_packages.yml