mirror of
https://github.com/wagoodman/dive
synced 2026-03-22 17:54:35 +01:00
* rework CI validation workflow and makefile * enable push * fix job names * fix license check * fix snapshot builds * fix acceptance tests * fix linting * disable pull request event * rework windows runner caching * disable release pipeline and add issue templates
11 lines
238 B
Bash
Executable file
11 lines
238 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
red=$(tput setaf 1)
|
|
bold=$(tput bold)
|
|
normal=$(tput sgr0)
|
|
|
|
# assert we are running in CI (or die!)
|
|
if [[ -z "$CI" ]]; then
|
|
echo "${bold}${red}This step should ONLY be run in CI. Exiting...${normal}"
|
|
exit 1
|
|
fi
|