Skip to content

Commit

Permalink
Merge pull request #13 from thotasrinath/12-can-this-be-integratd-wit…
Browse files Browse the repository at this point in the history
…h-github-actions

Github Actions integrated
thotasrinath authored Sep 1, 2024
2 parents 6f70d65 + 28ee562 commit c644a30
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -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

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: Install dependencies
run: go install go.k6.io/xk6/cmd/xk6@latest
- name: Build
run: xk6 build --output xk6-couchbase --with github.com/thotasrinath/xk6-couchbase=.
- name: List Binary
run: ls .
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ K6 extension to perform tests on couchbase.
- Supports Batch insertion.
- Supports findOne (Fetch by primary key)
- Supports deleting a document by id
- Supports upserts
- Testing query performance
- Prepared statement query performance

0 comments on commit c644a30

Please sign in to comment.