Skip to content

Test graphite

Test graphite #813

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: warp-ubuntu-latest-x64-4x
steps:
- uses: actions/checkout@v1
- run: rustup update
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
.
bindings_ffi
- uses: actions-rs/clippy-check@v1
name: Lint main workspace
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: workspace
args: --all-features --no-deps
- uses: actions-rs/clippy-check@v1
name: Lint ffi
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: ffi
args: --all-features --no-deps --manifest-path bindings_ffi/Cargo.toml