mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 17:44:29 +00:00
3aa23bded8
* Remove interfaces for replacement * Squashed 'interfaces/' content from commit 1c7f9c3 git-subtree-dir: interfaces git-subtree-split: 1c7f9c34740ab1057d9fc3e09da1d52eceffe6b8 * Update auto-generated files * Add eth/67
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
name: Rust
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
components: rustfmt, clippy
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
- uses: actions-rs/install@v0.1
|
|
with:
|
|
crate: cargo-hack
|
|
version: latest
|
|
use-tool-cache: true
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: hack
|
|
args: check --workspace --ignore-private --each-feature --no-dev-deps
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: check
|
|
args: --workspace --all-targets --all-features
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
|
|
- uses: actions-rs/clippy-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --all-features
|
|
|
|
- uses: actions-rs/audit-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|