Skip to content

Merge pull request #4 from poseidon-framework/chronicleUpdates #16

Merge pull request #4 from poseidon-framework/chronicleUpdates

Merge pull request #4 from poseidon-framework/chronicleUpdates #16

Workflow file for this run

name: trident validate
# Trigger the workflow on push or pull request, but only for the main branch
on:
pull_request:
push:
branches: [main]
jobs:
validate:
name: validate packages
runs-on: ubuntu-latest
steps:
- name: Install trident
run: |
wget https://github.com/poseidon-framework/poseidon-hs/releases/latest/download/trident-Linux
chmod +x trident-Linux
- name: Clone data repo
uses: actions/checkout@v3
with:
path: data
- name: Validation
run: ./trident-Linux validate -d data --ignoreGeno --logMode VerboseLog
- name: Check for displaced files
run: ./checkForDisplacedFiles.sh
working-directory: ./data
- name: Check if all registered files are actually LFS pointers
run: git lfs fsck --pointers
working-directory: ./data