mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-21 15:38:39 +00:00
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
code-tests:
|
|
strategy:
|
|
matrix:
|
|
platform: [x86, x64]
|
|
os: [ubuntu-latest]
|
|
runs-on: '${{ matrix.os }}'
|
|
if: "!contains(github.event.head_commit.message, 'NO_CI')"
|
|
name: 'code-tests: ${{ matrix.os }} / ${{ matrix.platform }}'
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@main
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Set up GCC
|
|
uses: egor-tensin/setup-gcc@v1
|
|
with:
|
|
version: latest
|
|
platform: '${{ matrix.platform }}'
|
|
- name: Run tests
|
|
run: |
|
|
chmod +x ./tests/test.sh
|
|
./tests/test.sh
|
|
codestyle-tests:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, 'NO_CI')"
|
|
strategy:
|
|
fail-fast: false
|
|
max-parallel: 3
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@main
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: recursive
|
|
token: ${{ secrets.GH_TOKEN }}
|
|
- name: Checkout Build Repository
|
|
uses: actions/checkout@main
|
|
with:
|
|
fetch-depth: 1
|
|
ref: develop
|
|
repository: Karaka-Management/Build
|
|
path: Build
|
|
- name: Copy config file
|
|
run: |
|
|
cp ./Build/Config/.clang-format ./.clang-format
|
|
- name: Lint Code Base
|
|
uses: github/super-linter/slim@v4
|
|
env:
|
|
VALIDATE_ALL_CODEBASE: false
|
|
VALIDATE_CLANG_FORMAT : true
|
|
DEFAULT_BRANCH: develop
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|