chore: Release {{crate_name}} version {{version}} #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_call: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- ".github/workflows/**.yml" | |
- "**/Makefile.toml" | |
- "release.toml" | |
- "LICENSE*" | |
- "**/*.md" | |
- "**/*.nix" | |
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/[email protected] | |
with: | |
command: clippy | |
args: -- -D warnings | |
# Run cargo fmt --all -- --check | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
env: | |
OPENMC_ENCRYPT_KEY: ${{ secrets.OPENMC_ENCRYPT_KEY }} | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- name: Run cargo fmt | |
uses: actions-rs/[email protected] | |
with: | |
command: fmt | |
args: --all -- --check |