Skip to content

Update c-cpp.yml

Update c-cpp.yml #2

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install packages
run: |
sudo apt update
sudo apt install -y \
make \
clang \
libseccomp-dev \
libcap-dev \
libc6-dev \
binutils
- name: configure
run: ./configure -s
- name: make
run: make