mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
transcript, dalek-ff-group, ed449, and ciphersuite are all usable with no_std alone. The rest additionally require alloc. Part of #279.
22 lines
428 B
YAML
22 lines
428 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Build Dependencies
|
|
uses: ./.github/actions/build-dependencies
|
|
with:
|
|
github-token: ${{ inputs.github-token }}
|
|
|
|
- name: Verify no-std builds
|
|
run: cd tests/no-std && cargo build --target wasm32-unknown-unknown
|