Skip to content

run tests in CI (#105) #3

run tests in CI (#105)

run tests in CI (#105) #3

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Install dependencies
run: cargo fetch
- name: Run tests
run: cargo test --all