Skip to content

Update c-workflow-for-main-makefile.yml #4

Update c-workflow-for-main-makefile.yml

Update c-workflow-for-main-makefile.yml #4

name: C CI for Main Makefile
on:
pull_request:
branches: [ "Master" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install -y gcc make
- name: Go to directory
run: cd main
- name: Run euclidean
run: cd main;make run-euclidean
- name: Run manhattan
run: cd main;make run-manhattan