Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Update README.md

Update README.md #22

Workflow file for this run

name: Test Makefile
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: make install
run: make install
- name: make
run: make
- name: make debug
run: |
make debug
./valgrind.sh || exit 0
- name: make clean
run: make clean