Merge pull request #89 from jitendra-kumar/master #14
This file contains hidden or 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 | ||
|
Check failure on line 1 in .github/workflows/convert.yaml
|
||
| on: | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| jobs: | ||
| Run dataset conversion scripts: | ||
| 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 | ||