Skip to content

Merge pull request #4 from kpetremann/bump #19

Merge pull request #4 from kpetremann/bump

Merge pull request #4 from kpetremann/bump #19

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: "Lint and test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
- name: Run golangci-lint
uses: golangci/[email protected]
- name: Test
run: go test -v ./...
- name: Build
run: go build -v ./cmd/dht2mqtt