Skip to content

testing actions

testing actions #2

Workflow file for this run

name: Generate ILAMB-ready dataset
on:
pull_request:
branches:
- master
jobs:
Convert:
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