Skip to content

Replace Makefile with justfile #18

Replace Makefile with justfile

Replace Makefile with justfile #18

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
build-args:
[
--no-default-features,
--features blocking,
]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Format
run: cargo fmt --all -- --config format_code_in_doc_comments=true --check
- name: Build
run: cargo build ${{ matrix.build-args }} --all
- name: Clippy
run: cargo clippy ${{ matrix.build-args }} -- -D warnings