Skip to content

python(feat): Report templates service #462

python(feat): Report templates service

python(feat): Report templates service #462

Workflow file for this run

name: rust-ci
on:
release:
types: [created]
pull_request:
push:
branches:
- main
workflow_call:
jobs:
lint-rust:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --manifest-path rust/Cargo.toml
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --manifest-path rust/Cargo.toml
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --check --manifest-path rust/Cargo.toml