Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix config thing

fix config thing #88

Workflow file for this run

name: Flake Check & Format
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Nix
uses: DeterminateSystems/nix-installer-action@v13
- name: Check cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run Checks
run: nix flake check
# format:
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - uses: actions/checkout@v4
# - name: Setup Nix
# uses: DeterminateSystems/nix-installer-action@v13
# - name: Check cache
# uses: DeterminateSystems/magic-nix-cache-action@main
# - name: Run Format
# run: nix fmt
# - name: Commit changes
# uses: stefanzweifel/git-auto-commit-action@v5
# with:
# commit_message: Auto-format Flake