Skip to content

first commit

first commit #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y valgrind make gcc
- name: Build project
run: make
- name: Run valgrind tests
run: valgrind ./myalloc