fix: project report. AZSeparatedToplogy does not provide any az (#627) #2017
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. # | |
################################################################################ | |
# Copyright 2024 SAP SE | |
# SPDX-License-Identifier: Apache-2.0 | |
name: CI | |
"on": | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: {} | |
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.4 | |
- 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.4 | |
- name: Run tests and generate coverage report | |
run: | | |
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y | |
sudo apt-get install --no-install-recommends postgresql-17 | |
export PATH=/usr/lib/postgresql/17/bin:$PATH | |
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 |