Skip to content

[Snyk] Security upgrade werkzeug from 2.2.3 to 3.0.1 #8

[Snyk] Security upgrade werkzeug from 2.2.3 to 3.0.1

[Snyk] Security upgrade werkzeug from 2.2.3 to 3.0.1 #8

Workflow file for this run

name: GoTest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
- name: Get dependencies
run: |
go mod download
- name: Build
run: |
make lint
go build
- name: Test
run: |
make docscheck
make test