Skip to content

Merge pull request #21 from jvmistica/jvmistica-patch-1 #84

Merge pull request #21 from jvmistica/jvmistica-patch-1

Merge pull request #21 from jvmistica/jvmistica-patch-1 #84

Workflow file for this run

name: telegram-assistant
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.20'
check-latest: true
- name: build
run: make build
- name: test
run: make test
- name: install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: vulncheck
run: make vulncheck
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITTOKEN }}
SONAR_TOKEN: ${{ secrets.SONARTOKEN }}