Skip to content

refactor: Simplify argument appending for paths in RunTrivy function #107

refactor: Simplify argument appending for paths in RunTrivy function

refactor: Simplify argument appending for paths in RunTrivy function #107

Workflow file for this run

on:
push:
branches: ['*']
permissions:
contents: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
- name: Install dependencies from .codacy/codacy.yaml
run: |
go build ./cli-v2.go
./cli-v2 install
- name: "Run tests"
run: |
go test ./...
release:
needs: test
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
- name: "Git Version"
id: generate-version
uses: codacy/[email protected]
- name: "Tag version"
run: |
git tag ${{ steps.generate-version.outputs.version }}
git push --tags "https://codacy:${{ secrets.GITHUB_TOKEN }}@github.com/codacy/codacy-cli-v2"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
# 'latest', 'nightly', or a semver
version: "latest"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}