Skip to content

C/C++ CI

C/C++ CI #25

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: make build
run: make _build
- name: make test
run: make _test
- name: make clean
run: make clean