Skip to content

Merge branch 'develop' into optimisation_rework #108

Merge branch 'develop' into optimisation_rework

Merge branch 'develop' into optimisation_rework #108

Workflow file for this run

name: rustfmt and clippy with annotations
on:
push:
branches:
- "**"
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --manifest-path ./phylo/Cargo.toml
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1.0.7
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --manifest-path ./phylo/Cargo.toml --all-features -- -D warnings