build(deps): bump softprops/action-gh-release from 4634c16e79c963813287e889244c50009e7f0981 to d99959edae48b5ffffd7b00da66dcdb0a33a52ee #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Build | |
run: make build | |
- name: Test | |
run: go test -v ./... | |
- name: Integration test | |
run: | | |
cd loadtest | |
make prepare | |
make run-webserver & | |
make run-sshified & | |
sleep 10 | |
make run-loadtest |