From e48c168866e139111d7d0c3532b0846772f065e0 Mon Sep 17 00:00:00 2001 From: Ftfernandes Date: Wed, 5 Jun 2024 22:35:14 -0300 Subject: [PATCH] Create go.yml pipeline de CI --- .github/workflows/go.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 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 0000000..8fda342 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,39 @@ +# 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: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + test: + 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-DB + run: docker-compose build + + - name: Create-DB + run: docker-compose up -d + + - name: Test + run: go test -v main_test.go + + build: + needs: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Build + run: go build -v main.go