Skip to content

fix: ci

fix: ci #2

Workflow file for this run

name: Test
on:
push:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-24.04-arm
name: Test
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Cargo
shell: bash -euo pipefail {0}
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Lint Backend
shell: bash -euo pipefail {0}
run: |
cargo fmt --check
cargo clippy -- --deny warnings