Skip to content

update

update #18

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jwlawson/[email protected]
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Pull submodules
run: git submodule update --init --recursive
- name: Build
run: cargo build
- name: Run test
run: cargo test
- name: Format check
run: cargo fmt --check