mirror of
https://github.com/progsource/maddy.git
synced 2026-03-24 23:40:39 +01:00
26 lines
450 B
YAML
26 lines
450 B
YAML
name: run-checks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
run-clang-format:
|
|
runs-on: ubuntu-24.04
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.8'
|
|
|
|
- name: Run format script with dry_run
|
|
run: |
|
|
clang-format --version
|
|
python tools/format.py dry_run
|