Skip to content

fix(ci): typo

fix(ci): typo #165

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Setup environment
run: GITHUB_ACTIONS=1 ./setup.sh
- name: Run tests
run: cargo test --verbose