Skip to content

Update flake.lock/package list #756

Update flake.lock/package list

Update flake.lock/package list #756

Workflow file for this run

name: basic spell checks
on: [pull_request]
jobs:
run:
name: Spell check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: get changed files
id: changed-files
uses: tj-actions/changed-files@v41
- uses: cachix/install-nix-action@v27
- run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
# exclude patches and input files
if [[ ! "$file" =~ .patch$ && ! "$file" =~ .inp$ ]]; then
nix run nixpkgs#typos -- "$file"
fi
done