Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Minimal ext2 implementation #61

Minimal ext2 implementation

Minimal ext2 implementation #61

Workflow file for this run

name: Build
on: [pull_request, workflow_dispatch]
concurrency:
group: ${{ github.base_ref }}-build
cancel-in-progress: true
jobs:
default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Checkout LFS objects
run: git lfs pull
- name: Deny check
uses: EmbarkStudios/cargo-deny-action@v1
- name: Format check
run: cargo fmt --check
- name: Lint check
run: cargo clippy --all-targets --all-features --no-deps
- name: Build
run: cargo build
- name: Tests
run: cargo test --all-features