Skip to content

clear_main_test

clear_main_test #134

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install valgrind
run: sudo apt update && sudo apt install valgrind -y
- name: Run make
run: make
- name: Run test
run: make test
- name: clean
run: make fclean