Skip to content

Added win32 API to the platform module #39

Added win32 API to the platform module

Added win32 API to the platform module #39

Workflow file for this run

name: linter
on:
push:
branches: [ "master" ]
paths: ['**.cpp', '**.hpp', '**.inl']
pull_request:
branches: [ "master" ]
paths: ['**.cpp', '**.hpp', '**.inl']
jobs:
lint:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: cpp-linter/cpp-linter-action@v2
id: linter
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: 'file' # Use .clang-format config file.
tidy-checks: '-*' # Disable clang-tidy checks.
version: '18'
# Only 'update' a single comment in a pull request's thread.
thread-comments: ${{ github.event_name == 'pull_request' && 'update' }}
- name: Fail fast?!
if: steps.linter.outputs.clang-format-checks-failed > 0
run: exit 1