Skip to content

Resolve every binding build against the lockfile #2190

Resolve every binding build against the lockfile

Resolve every binding build against the lockfile #2190

Workflow file for this run

name: Formatting
on: [push, pull_request]
jobs:
Format:
runs-on: ubuntu-26.04
steps:
- name: "Checkout repo"
uses: actions/checkout@v6
- name: Set up nix
uses: ./.github/actions/setup-nix
- name: Run treefmt
run: |
set -eo pipefail
nix fmt -- --ci || {
echo "❌ Code is not formatted. Showing diff:"
git --no-pager diff
exit 1
}