8000 Update profile.sh · gitleaks/gitleaks@49a437c · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update profile.sh #2735

Update profile.sh

Update profile.sh #2735

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
test:
strategy:
matrix:
platform: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23
- name: Build
run: go build ./...
- name: Set up gotestsum
run: |
go install gotest.tools/gotestsum@latest
- name: Test
run: |
gotestsum --raw-command -- go test -json ./... --race
- name: Validate Config
run: go generate ./... && git diff --exit-code
0