Skip to content

Update artifacts

Update artifacts #47

Workflow file for this run

name: Unit Test
on:
push:
branches: [master]
pull_request:
jobs:
speculos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- run: make set-github-action
- run: cd js && npm ci && npm test
unit-test:
runs-on: ubuntu-latest
steps:

Check failure on line 24 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions/setup-rust@v1
with:
toolchain: nightly
- name: Build and test
run: cd utils && cargo build && cargo test