Skip to content

Commit

Permalink
Run metadata consistency checks in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
illicitonion committed Jul 29, 2024
1 parent 8686d3e commit cb52142
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/metadata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Check for metadata consistency
on:
push:
branches: ["main"]
pull_request:
jobs:
metadata-consistency:
name: Check for metadata consistency
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Fetch toolchain
uses: dtolnay/rust-toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Check for metadata consistency
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path=metadata_checks/Cargo.toml
toolchain: stable

0 comments on commit cb52142

Please sign in to comment.