Skip to content

Try to run Io.

Try to run Io. #3

Workflow file for this run

name: Test Cpp Gtest
on:
push:
paths:
- 'cpp/**'
- '.github/workflows/cpp.yml'
pull_request:
paths:
- 'cpp/**'
- '.github/workflows/cpp.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Build
working-directory: cpp
run: |
mkdir build
cd build
cmake ..
cmake --build .
- name: Test
working-directory: cpp
run: |
cd build
ctest