Skip to content

Merge pull request #88 from alexejk/dependabot/docker/golang-1.23-alpine #162

Merge pull request #88 from alexejk/dependabot/docker/golang-1.23-alpine

Merge pull request #88 from alexejk/dependabot/docker/golang-1.23-alpine #162

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
jobs:
build:
name: Build on push
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build project
env:
CI: true
run: |
make build-in-docker
- name: Code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/coverage.txt
yml: ./codecov.yaml
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}