mirror of
https://github.com/projectdiscovery/httpx
synced 2026-06-08 16:50:17 +00:00
27 lines
516 B
YAML
27 lines
516 B
YAML
name: 🔨 Release Test
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**.go'
|
|
- '**.mod'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release-test:
|
|
runs-on: ubuntu-latest-16-cores
|
|
steps:
|
|
- name: "Check out code"
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: projectdiscovery/actions/setup/go@v1
|
|
|
|
- name: release test
|
|
uses: goreleaser/goreleaser-action@v4
|
|
with:
|
|
args: "release --clean --snapshot"
|
|
version: latest
|
|
workdir: .
|