Skip to content

Add infrastructure code #3

Add infrastructure code

Add infrastructure code #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [ opened, reopened, synchronize ]
env:
CARGO_TERM_COLOR: always
jobs:
rust-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: rustfmt
run: cargo fmt --all --check