Skip to content

Fix: correct instructions typing in Responses #24

Fix: correct instructions typing in Responses

Fix: correct instructions typing in Responses #24

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, synchronize, reopened]
pull_request_target:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build Workspace
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build workspace
run: cargo build --workspace --verbose
- name: Check formatting
run: cargo fmt --all -- --check
# - name: Run clippy
# run: cargo clippy --workspace -- -D warnings