diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..0f37477 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,30 @@ +name: L-36 CI Pipeline + +on: + push: + branches: [ "**" ] + +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' + cache: true + + - name: Install dependencies + run: make install + + - name: Run Race Detector + run: make race + + - name: Run Heavy Stress Test + run: | + sudo sysctl -w net.ipv4.ip_local_port_range="1024 65535" + sudo sysctl -w net.ipv4.tcp_tw_reuse=1 + + make stress