Bump idr0139-lawson-fascin from a987d5f
to 3d29f19
#758
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- uses: actions/setup-python@v2 | |
- name: Install dependencies | |
run: python -mpip install idr-utils/ | |
- name: Validate study files | |
run: find . -type f -name '*study.txt' | sort | xargs python idr-utils/pyidr/study_parser.py -v | |
- name: Run other checks | |
run: python idr-utils/scripts/travis-check.py |