1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#!/usr/bin/env bash
# shellcheck disable=SC2016
find . -type f -name go.mod | sort | while read -r mod; do
name="$(basename "$(dirname "$mod")")"
sum="$(dirname "$mod")/go.sum"
echo "# auto-generated by scripts/dependabot. DO NOT EDIT.
name: $name
on:
push:
branches:
- main
pull_request:
paths:
- $(dirname "$mod" | cut -f2- -d/)/**
- .github/workflows/${name}.yml
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: \${{ matrix.os }}
defaults:
run:
working-directory: $(dirname "$mod")
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: $mod
cache: true
cache-dependency-path: $sum
- run: go build -v ./...
- run: go test -race -v ./..." >"./.github/workflows/${name}.yml"
done
|