Skip to content

actions: add static checks #1

actions: add static checks

actions: add static checks #1

Workflow file for this run

name: Static checkers and verifiers
on:
pull_requests:
branches: [ main ]
jobs:
simple_script_checkers:
runs-on: ubuntu-latest
name: Fetching changes
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 5
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@41
since_last_remote_commit: true

Check failure on line 18 in .github/workflows/static.check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/static.check.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- anme: List all files changed
env:
ALL_CHANGED_FILES: ${{ stepd.changed-files.outputs.all_changed_files }}
run: |
for file in "$ALL_CHANGED_FILES"; do
echo "$file was changed"
done