ft_ping/.github/workflows/build.yml
Raphael a5bec11817
All checks were successful
Build / build (push) Successful in 26s
Build / build (pull_request) Successful in 25s
feat(gh/workflow): adding the installation of clang
2026-03-30 19:37:43 +02:00

27 lines
465 B
YAML

name: Build
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install clang
run: apt-get update && apt-get install -y clang
- name: Mandatory
run: CC=clang TERM=xterm make
- name: Bonus
run: CC=clang TERM=xterm make bonus