mirror of
https://github.com/projectdiscovery/httpx
synced 2026-06-08 16:50:17 +00:00
30 lines
493 B
YAML
30 lines
493 B
YAML
name: 🔨 Build Test
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
build:
|
|
name: Test Builds
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Test
|
|
run: go test ./...
|
|
|
|
- name: Integration Tests
|
|
run: bash run.sh
|
|
working-directory: integration_tests/
|
|
|
|
- name: Build
|
|
run: go build .
|
|
working-directory: cmd/httpx/
|