Skip to content

Commit

Permalink
Minimum CI
Browse files Browse the repository at this point in the history
  • Loading branch information
olegbespalov committed Feb 9, 2024
1 parent a39683f commit 003f762
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Checks
on:
push:
branches:
- main
tags:
- v*
pull_request:

defaults:
run:
shell: bash

jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: Check build
run: |
go version
pwd && ls -l
go install go.k6.io/xk6/cmd/xk6@master
MODULE_NAME=`go list -m`
GOPRIVATE="go.k6.io/k6" xk6 build \
--output ./k6ext \
--with $MODULE_NAME="."
./k6ext version

0 comments on commit 003f762

Please sign in to comment.