Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Add GitHub Actions build workflow #1

Add GitHub Actions build workflow

Add GitHub Actions build workflow #1

Workflow file for this run

name: Build
on: push
jobs:
check_codestyle:
runs-on: ubuntu-latest
steps:

Check failure on line 7 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
- uses: actions/checkout@v3
- name: Check codestyle
run: git ls-files '*.c' '*.h' '*.cpp' '*.hpp' | xargs clang-format -i --verbose && git diff --exit-code
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build application
run: make