Skip to content

Solve task for vector of shared pointers #222

Solve task for vector of shared pointers

Solve task for vector of shared pointers #222

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
formatting_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run clang-format style check
uses: coders-school/github-actions/clang-format-check@main
with:
check_path: 'homework/vector-of-shared-ptrs'