
Workflow Changes pt2. Based on the work of @Meltie2013 for MangosThree * Fix workflow compiler and default it to clang for now on
20 lines
348 B
YAML
20 lines
348 B
YAML
name: Codestyle Checks
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
check-codestyle:
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
runs-on: ubuntu-latest
|
|
name: Check Codestyling
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Check Codestyling
|
|
run: source ./apps/ci/ci-codestyle.sh
|