Skip to content

Commit

Permalink
Add extra GitHub CI check for no_std build.
Browse files Browse the repository at this point in the history
  • Loading branch information
koxu1996 committed Apr 3, 2024
1 parent fd64768 commit 9f80793
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/extra-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: extra-check
on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
# https://github.com/cspr-rad/kairos/pull/61#issuecomment-2035637388
build-kairos-tx-without-std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build no_std version of `kairos-tx`
run: cargo build -p kairos-tx --no-default-features

0 comments on commit 9f80793

Please sign in to comment.