diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 93b84db..c0db49b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,4 +16,9 @@ jobs: - uses: actions/setup-go@v5 with: go-version-file: 'go.mod' + - name: Kill any process using port 8080 + run: | + if lsof -i :8080; then + kill -9 $(lsof -t -i :8080) + fi - run: make test