Files
home-automation-backend/.github/workflows/tests.yml
2024-10-18 17:13:16 +02:00

23 lines
332 B
YAML

name: Run short tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
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
run: go test -v ./...