Skip to content

Update and rename cmake.yml to make.yml #1

Update and rename cmake.yml to make.yml

Update and rename cmake.yml to make.yml #1

Workflow file for this run

name: C/C++ with Make
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build-c:
runs-on: windows-latest
steps:
- uses: actions/checkout@main
- name: Build with Make
working-directory: ./appC
run: make
- name: Upload Artifact
uses: actions/upload-artifact@main
with:
name: compiled-artifact-c
path: ./appC/bin/*.exe
build-cpp:
runs-on: windows-latest
steps:
- uses: actions/checkout@main
- name: Build with Make
working-directory: ./appCpp
run: make
- name: Upload Artifact
uses: actions/upload-artifact@main
with:
name: compiled-artifact-cpp
path: ./appCpp/bin/*.exe