From 2802583da4dbdba36a3ab771f82acbb11df31062 Mon Sep 17 00:00:00 2001 From: Romeo Rosete Date: Mon, 19 May 2025 10:19:27 -0400 Subject: [PATCH 1/2] Create CODE_OF_CONDUCT.md Romeo Rosete --- CODE_OF_CONDUCT.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..4821ff4d33 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -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 +Romeo Rosete +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 11b9f14cc2242c015a80745997c41a56a6d285b9 Mon Sep 17 00:00:00 2001 From: Romeo Rosete Date: Mon, 19 May 2025 10:22:36 -0400 Subject: [PATCH 2/2] Update go.yml Romeo Rosete --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 78410aab10..c3be993bfd 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,5 +1,5 @@ name: i386 linux tests - +Romeo Rosete on: push: branches: [ master ]