Skip to content

Move NodeJS package manager to pnpm #1655

Move NodeJS package manager to pnpm

Move NodeJS package manager to pnpm #1655

Workflow file for this run

name: Rust
on:
push:
branches:
- main
- develop
tags:
- v*
pull_request:
env:
CARGO_INCREMENTAL: 0
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: install dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y gcc-multilib g++-multilib
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
targets: i686-unknown-linux-gnu
components: clippy, rustfmt
- name: cache dependencies
uses: Swatinem/[email protected]
- name: setup c2a-core
run: ./setup.sh
- name: reviewdog / clippy
uses: sksat/[email protected]
with:
reporter: ${{ github.event_name == 'pull_request' && 'github-pr-review' || 'github-check' }}
clippy_flags: --workspace --all-features
- name: format
run: cargo fmt --all -- --check
- name: unit test
run: cargo test --workspace