Skip to content

Merge remote-tracking branch 'refs/remotes/origin/31-code-refactoring… #1

Merge remote-tracking branch 'refs/remotes/origin/31-code-refactoring…

Merge remote-tracking branch 'refs/remotes/origin/31-code-refactoring… #1

Workflow file for this run

name: Rust CI
on:
push:
branches:
- '*'
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: stable
override: true
- name: Install dependencies
run: cargo build --verbose
- name: Run tests
run: cargo test