Skip to content

Create ci.yml

Create ci.yml #1

Workflow file for this run

name: C/C++ CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and run
run: |
mkdir bin
cd bin
cmake ../
make
./smallfolk_cpp