Renovate: Update github.com/sapcc #719
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 is AUTOGENERATED with <https://github.com/sapcc/go-makefile-maker> # | |
# Edit Makefile.maker.yaml instead. # | |
################################################################################ | |
name: CI | |
"on": | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
check-latest: true | |
go-version: 1.23.0 | |
- name: Build all binaries | |
run: make build-all | |
test: | |
name: Test | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
check-latest: true | |
go-version: 1.23.0 | |
- name: Run tests and generate coverage report | |
run: make build/cover.out | |
- name: Upload coverage report to Coveralls | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GIT_BRANCH: ${{ github.head_ref }} | |
run: | | |
go install github.com/mattn/goveralls@latest | |
goveralls -service=github -coverprofile=build/cover.out | |
services: | |
postgres: | |
image: postgres:16 | |
env: | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 54321:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 |