Skip to content

Create c-cpp.yml

Create c-cpp.yml #3

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Build Project
run: |
make all
- name: Clean Up
run: |
make clean