Skip to content

max-of-vector

max-of-vector #174

Workflow file for this run

name: max-of-vector
on: [pull_request, workflow_dispatch]
jobs:
max-of-vector:
runs-on: ubuntu-latest
env:
path: homework/max-of-vector/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