Skip to content

Merge pull request #5 from ZhuLingQing/os-timer #21

Merge pull request #5 from ZhuLingQing/os-timer

Merge pull request #5 from ZhuLingQing/os-timer #21

Workflow file for this run

name: C/C++ CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: check the environment
run: |
g++ --version
git --version
cmake --version
- name: make the project
run: |
mkdir build
pushd build
cmake ..
make
popd
- name: test
run: |
pushd build
make test
popd
- name: test with bash
run: |
./build/tests/test_pt_os
echo "DONE
"