Update c-workflow-for-main-makefile.yml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |