Files
go-astikit/.github/workflows/no_external_dependencies.sh
2023-08-08 11:00:13 +02:00

8 lines
178 B
Bash
Executable File

#!/bin/sh
if [ "$(go list -m all)" != "github.com/asticode/go-astikit" ]; then
echo "This repo doesn't allow any external dependencies"
exit 1
else
echo "cheers!"
fi