Skip to content

Password check

Password check #393

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