Skip to content

vector-of-shared-ptrs #199

vector-of-shared-ptrs

vector-of-shared-ptrs #199

name: vector-of-shared-ptrs
on: [pull_request, workflow_dispatch]
jobs:
vector-of-shared-ptrs:
runs-on: ubuntu-latest
env:
path: homework/vector-of-shared-ptrs/build
steps:
- name: Check out code
uses: actions/checkout@master
- name: Create build directory
run: mkdir ${{ env.path }}
- name: Compile
working-directory: ${{ env.path }}
run: |
cmake ..
make
- name: Run tests
working-directory: ${{ env.path }}
run: ctest -V