build(deps): bump softprops/action-gh-release from 4634c16e79c963813287e889244c50009e7f0981 to 9b795e578288d5ff64564dfa7dd4cda7b04bb648 #38
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 |