Files
kumomta/.github/workflows/shaping.yml
T
dependabot[bot] 41a96bcb0f build(deps): bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-07 14:55:30 +00:00

32 lines
747 B
YAML

name: Check shaping files
on:
push:
branches: [ "main" ]
paths:
- "assets/community/shaping.toml"
- "assets/policy-extras/shaping.toml"
- ".github/workflows/shaping.yml"
pull_request:
branches: [ "main" ]
paths:
- "assets/community/shaping.toml"
- "assets/policy-extras/shaping.toml"
- ".github/workflows/shaping.yml"
env:
CARGO_TERM_COLOR: always
jobs:
check-shaping:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: "Install Rust"
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: validate shaping
run: cargo run -p validate-shaping -- assets/community/shaping.toml assets/policy-extras/shaping.toml