Skip to content

psi4: fix compilation with hdf5 1.14.1-2, reenable adcc #362

psi4: fix compilation with hdf5 1.14.1-2, reenable adcc

psi4: fix compilation with hdf5 1.14.1-2, reenable adcc #362

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@v3
- name: get changed files
id: changed-files
uses: tj-actions/changed-files@v35
- uses: cachix/install-nix-action@v20
- 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