From 5a1d4bac5aed46876418614d3f4f06f7d5216a7b Mon Sep 17 00:00:00 2001 From: Janez Troha <239513+dz0ny@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:00:00 +0200 Subject: [PATCH] Create go.yml --- .github/workflows/go.yml | 46 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 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..b1c6145 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,46 @@ +# 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: + + build: + + runs-on: ubuntu-latest + services: + postgres: + image: postgres:15-alpine + # Provide the password for postgres + env: + POSTGRES_HOST_AUTH_METHOD: "trust" + POSTGRES_USER: "runner" + POSTGRES_DB: "runner" + # Set health checks to wait until postgres has started + options: >- + --health-cmd pg_isready + --health-interval 10s + --health-timeout 5s + --health-retries 5 + ports: + # Maps tcp port 5432 on service container to the host + - 5432:5432 + steps: + - uses: actions/checkout@v3 + - run: nix-shell --run "bash .pgsql/devdb.sh" + - 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 ./...