Skip to content

Merge pull request #3 from ZhuLingQing/dev1 #12

Merge pull request #3 from ZhuLingQing/dev1

Merge pull request #3 from ZhuLingQing/dev1 #12

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 && bash --version
- name: list the environment
run: ls -la
- name: build with bash
run: bash bash_build.sh
- name: run tests
run: |
pushd build
./test_pt_os
popd