mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
12 lines
216 B
Bash
12 lines
216 B
Bash
#!/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;
|