Skip to content

chore(deps): lock file maintenance #111

chore(deps): lock file maintenance

chore(deps): lock file maintenance #111

Workflow file for this run

name: 📄 Check formatting
on:
push:
branches-ignore:
- release
tags-ignore:
- "*"
pull_request:
workflow_dispatch:
jobs:
format-check:
name: 📄 Check code formatting
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: 🧰 Checkout code
uses: actions/checkout@v6
- name: ⚙️ Install Nix
uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: 🔧 Install devenv.sh
run: nix profile add nixpkgs#devenv
- name: 🌳 Format code
run: devenv shell "composer install && just format"