Skip to content

chore(deps): bump golang.org/x/text from 0.3.3 to 0.3.8 (#25) #69

chore(deps): bump golang.org/x/text from 0.3.3 to 0.3.8 (#25)

chore(deps): bump golang.org/x/text from 0.3.3 to 0.3.8 (#25) #69

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
make install-tools
go get -v -t -d ./...
- name: Build Assets
run: |
go build -v -o assets/check github.com/hdisysteme/artifacthub-resource/cmd/check
go build -v -o assets/check github.com/hdisysteme/artifacthub-resource/cmd/in
- name: Test
run: go test --cover --race -v ./...
- name: Test-E2E
run: go test -tags=e2e -race ./e2e
- name: Go Sec
run: gosec ./...