diff options
| author | Dario Nieuwenhuis <[email protected]> | 2021-06-10 03:05:44 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2021-06-10 03:05:44 +0200 |
| commit | c5a418a9a61c00385b3be8e128d7f438e7cd8990 (patch) | |
| tree | dbfa4e15c981cd89a4a8997d691b9dbb18fa2858 /.github/workflows | |
| parent | 189ab7b00eef11c748286774d97f64475cb2a7d5 (diff) | |
Run metapac full gen in Ci
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b48b9feb3..8807114ba 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml | |||
| @@ -112,3 +112,15 @@ jobs: | |||
| 112 | toolchain: stable | 112 | toolchain: stable |
| 113 | - name: Check fmt | 113 | - name: Check fmt |
| 114 | run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done | 114 | run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done |
| 115 | |||
| 116 | metapac_gen: | ||
| 117 | runs-on: ubuntu-latest | ||
| 118 | steps: | ||
| 119 | - uses: actions/checkout@v2 | ||
| 120 | with: | ||
| 121 | submodules: true | ||
| 122 | - uses: actions-rs/toolchain@v1 | ||
| 123 | with: | ||
| 124 | toolchain: stable | ||
| 125 | - name: Generate pregenerated metapac | ||
| 126 | run: cd stm32-metapac/gen; cargo run --release | ||
