Skip to content

Commit

Permalink
Create go.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
toanppp committed Apr 8, 2024
1 parent 90f47b6 commit 63cf05c
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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:

test:
runs-on: ubuntu-latest
environment: Example
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Test
env:
LIVECHAT_DOMAIN: ${{ secrets.LIVECHAT_DOMAIN }}
LIVECHAT_VERSION: ${{ secrets.LIVECHAT_VERSION }}
LIVECHAT_ORGANIZATION_ID: ${{ secrets.LIVECHAT_ORGANIZATION_ID }}
LIVECHAT_DEPLOYMENT_ID: ${{ secrets.LIVECHAT_DEPLOYMENT_ID }}
LIVECHAT_BUTTON_ID: ${{ secrets.LIVECHAT_BUTTON_ID }}
LIVECHAT_AGENT_ID: ${{ secrets.LIVECHAT_AGENT_ID }}
LIVECHAT_CONTAC_ID: ${{ secrets.LIVECHAT_CONTAC_ID }}
run: go test -v ./...

0 comments on commit 63cf05c

Please sign in to comment.