Skip to content

feat: uplift dependencies and update to support ink-v6.0.0-alpha #406

feat: uplift dependencies and update to support ink-v6.0.0-alpha

feat: uplift dependencies and update to support ink-v6.0.0-alpha #406

Workflow file for this run

---
name: Rust checks
on:
push:
branches:
- main
- release-*
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
main:
name: Run check, test and lints
runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: 0
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.86
profile: minimal
default: true
components: clippy, rustfmt
- name: Add rust-src
shell: bash
run: rustup component add rust-src
- name: Run format checks
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all
- name: Run linter
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- --no-deps -D warnings
- name: Run unit test suite
uses: actions-rs/cargo@v1
with:
command: test
- name: Run tests for examples
shell: bash
run: make test_examples