mirror of
https://github.com/progsource/maddy.git
synced 2026-03-25 07:50:39 +01:00
Some checks failed
run-checks / run-clang-format (push) Has been cancelled
run-tests / test-on-ubuntu (push) Has been cancelled
run-tests / test-on-windows (push) Has been cancelled
run-tests / test-on-osx (push) Has been cancelled
Update dependency versions / update-fetch-content (push) Has been cancelled
* Use the git tag as release name * Update version to 1.5.0 * stabilize benchmark code
25 lines
487 B
YAML
25 lines
487 B
YAML
name: run-checks
|
|
run-name: run-checks ${{ github.ref }}
|
|
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
|