6 lines
214 B
Bash
Executable file
6 lines
214 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -exuo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"/..
|
|
|
|
# actionlint: https://github.com/rhysd/actionlint
|
|
./actionlint $(find . | grep -v '\.git/' | grep '\.github/workflows/' | grep '.yml')
|