mirror of
https://git.vectorsigma.ru/public/headscale.git
synced 2026-07-28 22:28:02 +00:00
Point the action at the repo root, which is the canonical entry point in v2; the /action subpath is now a deprecated shim. Closes #3356
37 lines
1007 B
YAML
37 lines
1007 B
YAML
name: Server Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
# hscontrol/servertest is excluded from the sandboxed gotest flake check: it is
|
|
# slow (10s+ convergence cases) and timing-sensitive (race/stress/HA property
|
|
# tests), so it runs here in the devShell with a generous timeout instead.
|
|
defaults:
|
|
run:
|
|
shell: nix develop --fallback --command bash -e {0}
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
servertest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- uses: NixOS/nix-installer-action@6b8548fe06acfb0155a50ab5d561accb215764cc # main
|
|
- uses: Mic92/hestia@fb239a2f72d4b6e26eec5425f289dea23b27a527 # v2.0.0
|
|
|
|
- name: go test ./hscontrol/servertest
|
|
env:
|
|
CGO_ENABLED: "0"
|
|
run: go test -timeout=20m ./hscontrol/servertest/...
|