nest-sanity-checks/.forgejo/workflows/build.yaml
9pfs 9748b11d8b
All checks were successful
/ build (push) Successful in 7s
Don't do distcheck, because it doesn't matter much tbh
2024-04-24 04:57:57 +00:00

14 lines
376 B
YAML

on: [push]
jobs:
build:
runs-on: docker
container:
image: node:20-bookworm
steps:
- uses: actions/checkout@v3
- run: apt-get update
- run: apt-get install -y build-essential autoconf automake libcurl4-openssl-dev
- run: ./bootstrap
- run: ./configure CFLAGS="-Wall -Wextra -Werror"
- run: make
- run: make install