Skip to content

feat: add two sum solution and tests #7

feat: add two sum solution and tests

feat: add two sum solution and tests #7

Workflow file for this run

name: Cpp Format & Test
on: [push]
jobs:
build-cpp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make
run: |
cd cpp
make all
- name: format
run: |
cd cpp
make format
- name: run_tests
run: |
cd cpp
make run_tests
- name: clean
run: |
cd cpp
make clean