Skip to content

Merge pull request #7 from matter-labs/comment-fix #14

Merge pull request #7 from matter-labs/comment-fix

Merge pull request #7 from matter-labs/comment-fix #14

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
merge_group:
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build_and_test:
runs-on: [matterlabs-ci-runner]
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build project
run: |
cargo build
- name: Run clippy
run: |
cargo clippy -- -D warnings
- name: Check formatting
run: |
cargo fmt --check
- name: Run Tests
run: |
cargo test --all