Skip to content

update Readme

update Readme #3

Workflow file for this run

---
on:
push:
branches:
- "*"
name: CI
jobs:
ci:
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-unknown-linux-musl
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Target
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- name: Add Musl
run: |
sudo apt update
sudo apt install -y musl-tools gcc
- name: Lint
run: |
cargo clippy --workspace --all-features -- -D warnings
cargo fmt --all -- --check
- name: Build
run: cargo build --target ${{ matrix.target }}