Skip to content

Commit

Permalink
add github action to run httptap
Browse files Browse the repository at this point in the history
  • Loading branch information
alexflint committed Nov 18, 2024
1 parent 45ecaa9 commit 555e564
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
workflow_dispatch:
push:

jobs:
release:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup
uses: actions/setup-go@v5
with:
go-version: stable

- name: Run
run: go run . -v -- curl https://www.example.com

0 comments on commit 555e564

Please # to comment.