Skip to content
Snippets Groups Projects
Commit dae062fd authored by Bryan Chen's avatar Bryan Chen
Browse files

add test workflow

parent 434defab
No related branches found
No related tags found
No related merge requests found
name: Test
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2019-08-19
components: rustfmt
target: wasm32-unknown-unknown
default: true
- name: Check format
run: cargo fmt --all -- --check
- name: Build
run: cargo build --locked
- name: Run tests
run: cargo test --all
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment