Skip to content

build(deps): bump golang.org/x/crypto from 0.14.0 to 0.15.0 #18

build(deps): bump golang.org/x/crypto from 0.14.0 to 0.15.0

build(deps): bump golang.org/x/crypto from 0.14.0 to 0.15.0 #18

Workflow file for this run

name: Go
on:
push:
pull_request:
branches: [ "development" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}