Skip to content

Refactor NewAerospikeBackend function #243

Refactor NewAerospikeBackend function

Refactor NewAerospikeBackend function #243

Workflow file for this run

name: Validate
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
validate:
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
runs-on: ubuntu-20.04
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout Branch
uses: actions/checkout@v3
with:
# Resolves to empty string for push events and falls back to HEAD.
# See: https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit
ref: ${{ github.event.pull_request.head.sha }}
- name: Validate
run: |
./validate.sh --nofmt
env:
GO111MODULE: "on"