Skip to content

(#5) [Bug] : Fix build pipeline #3

(#5) [Bug] : Fix build pipeline

(#5) [Bug] : Fix build pipeline #3

Workflow file for this run

name: Matsya Relay CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install just
uses: extractions/setup-just@v2
with:
just-version: '1.36.0'
- name: Linting
run: just lint
- name: Build
run: just build