Skip to content

update ts-codegen template #169

update ts-codegen template

update ts-codegen template #169

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
env:
RUST_BACKTRACE: 1
jobs:
style:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: cargo fmt --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check