Skip to content

fix: function outside #21

fix: function outside

fix: function outside #21

Workflow file for this run

name: CI
on:
workflow_call:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- ".github/"
- "**/Makefile.toml"
- "release.toml"
- "LICENSE*"
- "README.md"
tags-ignore:
- "**"
pull_request:
branches:
- main
- dev
jobs:
# Run cargo clippy -- -D warnings
clippy_check:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- uses: dsherret/rust-toolchain-file@v1
- name: Run clippy
uses: actions-rs/cargo@v1.0.1
with:
command: clippy
args: -- -D warnings
# Run cargo fmt --all -- --check
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- uses: dsherret/rust-toolchain-file@v1
- name: Run cargo fmt
uses: actions-rs/cargo@v1.0.1
with:
command: fmt
args: --all -- --check