Skip to content

ci: use cpp-linter

ci: use cpp-linter #67

Workflow file for this run

on:
pull_request:
push:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
backend:
# - libnode
- lua
# - python310
- quickjs
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: xmake-io/github-action-setup-xmake@v1
# - uses: actions/cache@v4
# with:
# path: |
# ~/AppData/Local/.xmake
# key: xmake-${{ hashFiles('xmake.lua') }}
# restore-keys: |
# xmake-
- run: |
xmake repo -u
- run: |
xmake f -a x64 -m release -p windows -v -y --backend=${{ matrix.backend }}
- run: |
xmake -w -y
- uses: actions/upload-artifact@v4
with:
name: legacy-script-engine-${{ matrix.backend }}-windows-x64-${{ github.sha }}
path: |
bin/
check-code:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- id: cpp-linter-action
uses: cpp-linter/cpp-linter-action@v2
with:
style: file
tidy-checks: ''
version: 17
- if: ${{ steps.cpp-linter-action.outputs.checks-failed > 0 }}
run: |
exit 1