Skip to content

refactor: serverful

refactor: serverful #5

Workflow file for this run

name: Format, Lint, and Build
on:
push:
branches: [main]
paths-ignore: ["**.md"]
pull_request:
paths-ignore: ["**.md"]
env:
CARGO_TERM_COLOR: always
jobs:
suite:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Register Problem Matchers
uses: r7kamura/rust-problem-matchers@v1
- run: rustup toolchain install nightly --profile minimal
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install Cargo Make
uses: davidB/rust-cargo-make@v1
- name: Run Formatter
run: cargo make format-ci
- name: Run Clippy
run: cargo make lint-ci
- name: Build
run: cargo build --release