Skip to content

Refactor in core.

Refactor in core. #40

Workflow file for this run

name: ci
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Fmt
run: cargo fmt -- --check
# - name: Clippy
# run: RUSTFLAGS="-Dwarnings" cargo clippy