mirror of
https://github.com/progsource/maddy.git
synced 2026-03-25 16:00:39 +01:00
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@v5
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.8'
|
|
|
|
- name: Run format script with dry_run
|
|
run: |
|
|
clang-format --version
|
|
python tools/format.py dry_run
|