Create FUNDING.yml #217
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: Stress Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Rust toolchain | |
run: | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --component llvm-tools-preview | |
- name: Install tcpgoon and tcptunnelchecker | |
run: | | |
go install github.com/dachad/tcpgoon@latest | |
cargo install --git https://github.com/vi/tcptunnelchecker | |
- name: Build | |
run: cargo build --quiet | |
- name: Run stress tests | |
run: .github/workflows/stress.sh |