Skip to content

Add PartialEq to errors compared in tests (#1873) #2191

Add PartialEq to errors compared in tests (#1873)

Add PartialEq to errors compared in tests (#1873) #2191

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
}