Skip to content

feat: added support for grai 96 #3

feat: added support for grai 96

feat: added support for grai 96 #3

Workflow file for this run

on: [push, pull_request]
name: build
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
- name: Check format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Lint
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings