mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 07:04:24 +00:00
41d58739bd
* Use go 1.22 * install non-pro goreleaser * increment go-version * build w/ go 1.22 for codeql
20 lines
465 B
YAML
20 lines
465 B
YAML
name: Smoke
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
smoke:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.22"
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Smoke
|
|
run: |
|
|
set -e
|
|
go run . git https://github.com/dustin-decker/secretsandstuff.git
|
|
go run . github --repo https://github.com/dustin-decker/secretsandstuff.git
|