secure: use HKDF for session key derivation, bind transcript to both peers #15
This file contains hidden or 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: VX6 Stable Gate | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release/stable | |
| push: | |
| branches: | |
| - release/stable | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Install Linux dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libxext-dev libxkbcommon-dev libgl1-mesa-dev | |
| - name: Build all | |
| run: go build ./... | |
| - name: Test all | |
| run: go test ./... -count=1 | |
| - name: Conformance tests | |
| run: go test ./internal/conformance -count=1 | |
| - name: Cross-build Linux | |
| run: GOOS=linux GOARCH=amd64 go build ./cmd/vx6 | |
| - name: Cross-build Windows | |
| run: GOOS=windows GOARCH=amd64 go build ./cmd/vx6 | |
| - name: Cross-build macOS | |
| run: GOOS=darwin GOARCH=amd64 go build ./cmd/vx6 |