Skip to content

Commit

Permalink
Merge pull request #34 from konsumlamm/no_std
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu authored Jan 4, 2022
2 parents fd0239f + 48fcd0d commit afd5b0a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,18 @@ jobs:
run: cargo build
- name: Run tests
run: cargo test
- name: Run tests (no_std)
- name: Run tests (without default features)
run: cargo test --no-default-features

no_std:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test no_std support
run: |
rustup target add thumbv6m-none-eabi
cargo build --no-default-features --target thumbv6m-none-eabi
format:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit afd5b0a

Please sign in to comment.