Skip to content
This repository was archived by the owner on Oct 5, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check

on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
container: "scssubstratee/substratee_dev:1804-2.12-1.1.3-001"
steps:
- uses: actions/checkout@v2
- name: init-rust-target
run: rustup target add wasm32-unknown-unknown
- name: test_no_std
# We can only run cargo check here, as the linker will fail, as we don't have the sgx `c` files in the repo
run: cd test_no_std && cargo check
Loading