Skip to content

allow skipping errors while creating snowball archive #265

allow skipping errors while creating snowball archive

allow skipping errors while creating snowball archive #265

Workflow file for this run

[Iname: VulnCheck

Check failure on line 1 in .github/workflows/vulncheck.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/vulncheck.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
jobs:
vulncheck:
name: Analysis
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.20.7 ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Get govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
shell: bash
- name: Run govulncheck
run: govulncheck ./...
shell: bash