Skip to content

Commit

Permalink
ci: add interface check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Aug 20, 2024
1 parent e02dc5d commit db1527e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/run.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Generate interfaces

on:
push:
branches:
- master
tags:
- 'v[0-9]+\.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'

env:
CARGO_TERM_COLOR: always

jobs:
gen-ifaces:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo run --features fs
- run: git diff | grep -q . && exit 1

0 comments on commit db1527e

Please sign in to comment.