Skip to content

chore: Downgrade Cargo.lock version from 4 to 3 #7

chore: Downgrade Cargo.lock version from 4 to 3

chore: Downgrade Cargo.lock version from 4 to 3 #7

Workflow file for this run

name: Lint Test Build
on:
push:
branches:
- main
- staging
pull_request:
branches:
- main
- staging
jobs:
lint-build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Install Clippy (Rust linter)
run: rustup component add clippy
- name: Run Linter
run: cargo clippy -- -D warnings
- name: Run Build
run: cargo build --release
- name: Run Tests
run: cargo test