From 6508775e606c8e35a129105fcacb337f20a331ea Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Fri, 27 Sep 2024 13:53:49 +0200 Subject: [PATCH] init --- .github/CODEOWNERS | 1 + .github/workflows/build.yml | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/workflows/build.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..ffbc9b8 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @dnstapir/core diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4dcc838 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + go-version: ['1.23.1'] + steps: + - uses: actions/checkout@v4 + - name: Setup Go ${{ matrix.go-version }} + uses: actions/setup-go@v5 + with: + go-version: ${{ matrix.go-version }} + - name: Display Go version + run: go version + - name: Build + run: make build