Skip to content

Adding .yml

Adding .yml #1

Workflow file for this run

name: C++ CI (Make)
on:
push:
branches: [ "main", "ci/cd" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install toolchain
run: |
sudo apt-get update
sudo apt-get install -y build-essential
- name: Build (Makefile)
run: |
make -j"$(nproc)"