Files
home-automation-backend/.github/workflows/short-tests.yml
Tianyu Liu 99ed529600
Some checks failed
Run short tests / run-tests (push) Failing after 12s
change runner to linux
2025-05-20 15:16:58 +02:00

21 lines
312 B
YAML

name: Run short tests
on:
push:
pull_request:
jobs:
run-tests:
runs-on: linux
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Test
working-directory: ./src
run: go test -v --short ./...