Skip to content

fix step name

fix step name #7

Workflow file for this run

name: Linux Build CI
on:
push:
branches: [ perl-FCGI-merge ]
pull_request:
branches: [ perl-FCGI-merge ]
jobs:
build:
runs-on: ubuntu-latest
container: ubuntu:24.04
steps:
- uses: actions/checkout@v4
- name: setup os
run: apt-get update && apt-get -y install libfcgi-client-perl autoconf automake libtool make gcc make m4 g++
- name: libfcgi - autogen.sh
run: ./autogen.sh
- name: libfcgi-configure
run: ./configure
- name: libfcgi - make
run: make
- name: perl module - distrib and perl Makefile.PL
run: cd perl
run: ./distrib && perl Makefile.PL

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

View workflow run for this annotation

GitHub Actions / Linux Build CI

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 27, Col: 7): 'run' is already defined
- name: perl module - make
run: make
- name: perl module - make test
run: make test