Skip to content

move crates to crates dir #264

move crates to crates dir

move crates to crates dir #264

Workflow file for this run

name: "CI"
on:
push:
branches:
- main
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: AdityaGarg8/remove-unwanted-software@v2
with:
remove-android: "true"
remove-codeql: "true"
remove-docker-images: "true"
remove-dotnet: "true"
remove-haskell: "true"
- uses: actions/checkout@v4
with:
submodules: "true"
ref: ${{ github.event.pull_request.head.ref }}
- uses: DeterminateSystems/flake-checker-action@v5
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: Swatinem/rust-cache@v2
- run: nix develop -c cargo clippy --fix --no-deps
- run: nix develop -c cargo fmt --all
- run: nix develop -c prettier -w .
- uses: EndBug/add-and-commit@v9
with:
message: "chore: lint"
default_author: github_actions
- run: nix develop -c nix run .#generate-readme
- uses: EndBug/add-and-commit@v9
with:
message: "chore: generate README"
default_author: github_actions
- run: nix develop -c cargo doc --all-features --no-deps
- run: nix develop -c cargo test --all-features --all-targets
- run: nix develop -c cargo test --all-features --doc