Files
teleport/.gitea/workflows/test-pr.yaml
T
s1d3sw1ped_bot e12142633a
CI / check-and-test (pull_request) Failing after 20s
Run CI on push to master and bump Go to 1.26.0
Match steamcache2: trigger check-and-test on pull_request and push to the default branch. Tests passed on 1.26.0.
2026-08-31 21:13:07 +00:00

19 lines
352 B
YAML

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
check-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-go@main
with:
go-version-file: 'go.mod'
- run: go mod tidy
- run: go build ./...
- run: go test -race -v -shuffle=on ./...