Skip to content

Enhanced pointer lab code #5

Enhanced pointer lab code

Enhanced pointer lab code #5

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "feature" ]
pull_request:
branches: [ "feature" ]
# workflow_dispatch:
jobs:
CPP01-BUILD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build CPP01
run: make -C CPP01 -f Makefile
CPP02-BUILD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build CPP02
run: make -C CPP02 -f Makefile
CPP03-BUILD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build CPP03
run: make -C CPP03 -f Makefile
CPP04-BUILD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build CPP04
run: make -C CPP04 -f Makefile
CPP05-BUILD:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build CPP05
run: make -C CPP05 -f Makefile