Implementation of a function solving mathematical operations. #473
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: calculate | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
calculate: | |
runs-on: ubuntu-latest | |
env: | |
path: homework/calculate/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/calculate' |