From 487319d0cb8362f801af80a37a9fb841e7198e5c Mon Sep 17 00:00:00 2001 From: Jpjames1 Date: Wed, 4 Sep 2024 02:46:43 -0500 Subject: [PATCH 1/3] Create go.yml --- .github/workflows/go.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 000000000..0ee7422fa --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,28 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +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.20' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... From b011ac184d16623030aff057902710915504cad1 Mon Sep 17 00:00:00 2001 From: Jpjames1 Date: Thu, 5 Sep 2024 03:01:54 -0500 Subject: [PATCH 2/3] Create devcontainer.json --- .devcontainer/devcontainer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..ad93c14a0 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + } +} From 6fa721019b5f21064f64399b06d992ea0dd945ae Mon Sep 17 00:00:00 2001 From: James P Date: Thu, 19 Sep 2024 21:58:23 -0500 Subject: [PATCH 3/3] Update devcontainer.json --- .devcontainer/devcontainer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ad93c14a0..e8f167f40 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,6 @@ { "image": "mcr.microsoft.com/devcontainers/universal:2", "features": { + app.lowly.io } }