Skip to content

chore(deps): update module github.com/anchore/syft/cmd/syft to v1.38.… #1620

chore(deps): update module github.com/anchore/syft/cmd/syft to v1.38.…

chore(deps): update module github.com/anchore/syft/cmd/syft to v1.38.… #1620

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Lint
run: make lint-ci
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Test
run: make test-ci
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
test-release:
name: test release
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Run GoReleaser
run: make test-release