Files
home-automation-backend/.github/workflows/short-tests.yml
Tianyu Liu 234323c766
All checks were successful
Run short tests / run-tests (push) Successful in 1m1s
Add more tests for ha
2024-10-23 13:53:29 +02:00

21 lines
320 B
YAML

name: Run short tests
on:
push:
pull_request:
jobs:
run-tests:
runs-on: ubuntu-latest
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 ./...