mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 22:40:09 +01:00
12 lines
216 B
Bash
Executable file
12 lines
216 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail;
|
|
|
|
make fmt;
|
|
|
|
git diff --exit-code --stat src/;
|
|
git diff --exit-code --stat test/;
|
|
git diff --exit-code --stat scripts/;
|
|
git diff --exit-code --stat requirements/;
|
|
|
|
make lint;
|
|
make test;
|