mirror of https://github.com/BOINC/boinc.git
26 lines
529 B
YAML
26 lines
529 B
YAML
|
name: Source Code Check
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
schedule:
|
||
|
- cron: '25 12 * * 0'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: ${{ matrix.type }}
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
type: [source-code-check]
|
||
|
fail-fast: false
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
fetch-depth: 2
|
||
|
- name: Check source code for illegal symbols
|
||
|
if: ${{ success() }}
|
||
|
run: |
|
||
|
python ./ci_tools/source_code_check.py .
|