Skip to content

Update readme #4

Update readme

Update readme #4

Workflow file for this run

name: check
on:
workflow_dispatch:
push:
branches: [ "develop" ]
env:
RUSTDOCFLAGS: "-D warnings"
RUSTFLAGS: "-D warnings"
jobs:
ubuntu:
runs-on: ubuntu-22.04
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: setup rust cache
uses: Swatinem/rust-cache@v2
- name: install tools
run: |
sudo apt-get install musl-tools -y
cargo install --debug cargo-make
rustup target add x86_64-unknown-linux-musl
- name: check
run: cargo make --no-workspace ci-check