Skip to content

Bump github.com/bavix/vakeel-way from 1.0.5 to 1.0.6 #24

Bump github.com/bavix/vakeel-way from 1.0.5 to 1.0.6

Bump github.com/bavix/vakeel-way from 1.0.5 to 1.0.6 #24

Workflow file for this run

name: Unit
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.23' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies
run: go get .
- name: Test with Go
run: go test -json ./...