Skip to content

Merge pull request #33 from libdns/dependabot/github_actions/actions/… #68

Merge pull request #33 from libdns/dependabot/github_actions/actions/…

Merge pull request #33 from libdns/dependabot/github_actions/actions/… #68

Workflow file for this run

---
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
check-latest: true
- name: Build
run: go build -v ./...
codechecks:
name: Code checks
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
check-latest: true
- name: Lint
uses: golangci/golangci-lint-action@v9
with:
only-new-issues: true