Skip to content

.github: add building and testing workflows #1

.github: add building and testing workflows

.github: add building and testing workflows #1

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
types: [opened, synchronize]
paths-ignore:
- '**/*.md'
push:
# Build for the master branch.
branches:
- master
workflow_dispatch:
inputs:
ref:
description: 'Ref to build Bench, GoNode and SharpNode images [default: latest master; examples: 0a4ff9d3e4a9ab432fd5812eb18c98e03b5a7432]'
required: false
default: ''
jobs:
build_image:

Check failure on line 22 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 22, Col: 3): The workflow must contain at least one job with no dependencies.
needs: build_cli
name: Build Bench, GoNode and SharpNode docker images
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.ref }}
fetch-depth: 0
- name: Build
run: make build