Skip to content

Renovate: Update module github.com/sapcc/go-api-declarations to v1.11.0 #386

Renovate: Update module github.com/sapcc/go-api-declarations to v1.11.0

Renovate: Update module github.com/sapcc/go-api-declarations to v1.11.0 #386

Workflow file for this run

################################################################################
# This file is AUTOGENERATED with <https://github.com/sapcc/go-makefile-maker> #
# Edit Makefile.maker.yaml instead. #
################################################################################
name: CI
"on":
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
branches:
- '*'
paths-ignore:
- '**.md'
permissions:
contents: read
jobs:
buildAndLint:
name: Build & Lint
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.22"
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
test:
name: Test
needs:
- buildAndLint
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.22"
- 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