Skip to content

Unified payjoin service #201

Unified payjoin service

Unified payjoin service #201

Workflow file for this run

name: Continuous integration
on: [push, pull_request]
jobs:
Format:
runs-on: ubuntu-latest
steps:
- name: "Checkout repo"
uses: actions/checkout@v4
- name: "Install nix"
uses: DeterminateSystems/determinate-nix-action@main
- name: "Use nix cache"
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run treefmt
run: |
set -eo pipefail
nix fmt -- --ci || {
echo "❌ Code is not formatted. Showing diff:"
git --no-pager diff
exit 1
}