Skip to content

Fix action

Fix action #7

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install PocketIC server
uses: dfinity/pocketic@main
with:
pocket-ic-server-version: '6.0.0'
- name: Confirm successful installation
run: ${{ env.POCKET_IC_BIN }} --version
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run tests
run: cargo test --target wasm32-unknown-unknown