Skip to content

ICS-Mainnet -v15.3.0 #881

ICS-Mainnet -v15.3.0

ICS-Mainnet -v15.3.0 #881

Workflow file for this run

name: Build
on:
push:
branches:
- development
- feature/dev
release:
types: [created]
jobs:
sonar:
name: Sonarqube
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/[email protected]
with:
go-version: 1.21.7
id: go
- name: Check out code into the Go module directory˛˜
uses: actions/checkout@v3
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build Release
run: make build