[chore] migrate oauth2 -> codeberg (#3857)

This commit is contained in:
tobi 2025-03-02 16:42:51 +01:00 committed by GitHub
commit 8488ac9286
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
65 changed files with 1677 additions and 1221 deletions

View file

@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
go test -race -coverprofile=profile.out -covermode=atomic "$d"
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done