Skip to content

fix: macos compilation #150

fix: macos compilation

fix: macos compilation #150

Workflow file for this run

name: CI
on:
workflow_call:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- ".github/workflows/**.yml"
- "**/Makefile.toml"
- "release.toml"
- "LICENSE*"
- "**/*.md"
- "**/*.nix"
tags-ignore:
- "**"
pull_request:
branches:
- main
- dev
jobs:
# Run cargo clippy -- -D warnings
clippy_check:
name: Clippy
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: dsherret/rust-toolchain-file@v1
- name: Run clippy
uses: actions-rs/[email protected]
with:
command: clippy
args: -- -D warnings
# Run cargo fmt --all -- --check
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: dsherret/rust-toolchain-file@v1
- name: Run cargo fmt
uses: actions-rs/[email protected]
with:
command: fmt
args: --all -- --check