build(deps): bump toolmantim/release-drafter from 5.12.1 to 5.25.0 (#… #266
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file adheres to the YAML5 style. | |
{ | |
name: "Merge", | |
on: { | |
push: { | |
branches: ["master"], | |
} | |
}, | |
jobs: { | |
build: { | |
name: "Build", | |
"runs-on": "ubuntu-latest", | |
steps: [ | |
{name: "Check out code into the Go module directory", uses: "actions/checkout@v4"}, | |
{name: "Test master", run: "make test-master"}, | |
{name: "Test release", run: "make test-release"}, | |
], | |
}, | |
}, | |
} |