Skip to content

chore: Release {{crate_name}} version {{version}} #20

chore: Release {{crate_name}} version {{version}}

chore: Release {{crate_name}} version {{version}} #20

Workflow file for this run

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