65 soc data for usa #8
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: Generate ILAMB-ready dataset | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
Run dataset conversion scripts: | ||
Check failure on line 7 in .github/workflows/convert.yaml GitHub Actions / Generate ILAMB-ready datasetInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Execute all python changed files | ||
uses: jitterbit/get-changed-files@v1 | ||
with: | ||
format: 'py' | ||
- run: | | ||
for changed_file in ${{ steps.files.outputs.all }}; do | ||
echo "Do something with this ${changed_file}." | ||
done |