switch to env vars from conf #454
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: | |
- master | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build | |
needs: | |
- lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Make build | |
run: make build-all | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: latest | |
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: | |
go-version: "1.21" | |
- 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 |