Skip to content

fail fast

fail fast #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
debian_version: [bullseye, bookworm]
container:
image: debian:${{ matrix.debian_version }}
fail-fast: false

Check failure on line 13 in .github/workflows/ci_debian.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci_debian.yml (Line: 13, Col: 5): Unexpected value 'fail-fast'
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
#!/bin/bash
apt update && apt -y install cmake build-essential pkg-config libssl-dev python3-protobuf protobuf-compiler-grpc libgrpc++-dev nanopb libnanopb-dev && cd kuka-external-control-sdk && mkdir build
- name: Build and install
run: cmake .. && make install
working-directory: ./kuka-external-control-sdk/build