Files
common/.github/workflows/c-cpp.yml
Workflow config file is invalid. Please check your config file: yaml: line 17: found a tab character where an indentation space is expected
2026-03-14 15:28:30 -04:00

27 lines
407 B
YAML

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 NASM
run: |
sudo apt-get update
sudo apt-get install -y nasm
- name: make
run: make
- name: make test
run: make test
- name: make examples
run: make examples