Skip to content

Test id.

Test id. #2

Workflow file for this run

name: Alpine build
on:
push:
pull_request:
jobs:
build-module:
runs-on: ubuntu-latest
steps:
- name: Id
run: id
build-module:

Check failure on line 14 in .github/workflows/alpine.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/alpine.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
runs-on: ubuntu-latest
container: alpine
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Id
run: id
- name: Install dependencies
run: |
apk add build-base openssl-dev zlib-dev pcre2-dev
- name: Checkout nginx
uses: actions/checkout@v4
with:
repository: nginx/nginx
path: nginx
- name: Build nginx
working-directory: nginx
run: |
auto/configure --with-compat --with-debug --with-http_ssl_module \
--with-http_v2_module --with-http_v3_module
make -j $(nproc)