Skip to content

Cargo.lock, flake.lock: update for Rust 1.8 (#63) #27

Cargo.lock, flake.lock: update for Rust 1.8 (#63)

Cargo.lock, flake.lock: update for Rust 1.8 (#63) #27

Workflow file for this run

# This workflow run when something is pushed on main and it does
# normal checks like in the normal PRs
# Jobs on pull request
name: CI on main
on:
workflow_dispatch:
push:
branches:
- main
jobs:
format:
name: format rust files
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain and cache
uses: actions-rust-lang/[email protected]
- name: format files
run: cargo fmt --all --check
lint:
name: lint all rust files
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain and cache
uses: actions-rust-lang/[email protected]
- name: Clippy
run: |
cargo clippy \
--all-targets \
--no-deps \
--workspace \
-- \
-D warnings \
-D rustdoc::broken_intra_doc_links \
-W clippy::explicit_iter_loop \
-W clippy::explicit_into_iter_loop \
-W clippy::semicolon_if_nothing_returned \
-W clippy::doc_markdown \
-W clippy::manual_let_else
test:
name: test rust files
strategy:
matrix:
include:
- os: windows-latest
- os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain and cache
uses: actions-rust-lang/[email protected]
- name: run tests
run: cargo test --workspace