fix(deps): update all dependencies #376
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build app | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.17.8' | |
- name: Show Go version | |
run: go version | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
- name: Build | |
run: go build -o ddns |