Skip to content

chore(deps): bump golang.org/x/crypto from 0.0.0-20210817164053-32db794688a5 to 0.10.0 #24

chore(deps): bump golang.org/x/crypto from 0.0.0-20210817164053-32db794688a5 to 0.10.0

chore(deps): bump golang.org/x/crypto from 0.0.0-20210817164053-32db794688a5 to 0.10.0 #24

Workflow file for this run

name: Build and analyze
on:
# Trigger analysis when pushing in master or pull requests, and when creating
# a pull request.
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.15
- name: Run tests
run: go test -covermode=atomic -coverprofile=coverage.out ./...
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}