Skip to content

Commit

Permalink
Add Github Actions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
harshalbhatia committed Feb 4, 2022
1 parent ab776e3 commit 8f5c556
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: GoCI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
services:
# Label used to access the service container
redis:
# Docker Hub image
image: redis
ports:
- 6379:6379
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
postgres:
image: postgres:10.8
env:
POSTGRES_USER: postgres
#POSTGRES_PASSWORD: ipsum-lorem
POSTGRES_DB: postgres
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.12

- name: Test
run: make db.setup test-with-race

release:
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') }}
steps:
- name: Release
run: scripts/release.sh

0 comments on commit 8f5c556

Please sign in to comment.