Skip to content

Updated libraries

Updated libraries #90

Workflow file for this run

name: Feature_CI
on:
push:
branches:
- feature/*
pull_request:
branches:
- feature/*
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Tags
run: |
git fetch --prune --unshallow
git describe --tags `git rev-list --tags --max-count=1`
CURV=$(git describe --tags `git rev-list --tags --max-count=1`)
IFS='.' read -ra VR <<< "$CURV"
INC=`expr ${VR[2]} + 1`
FV="${VR[0]}.${VR[1]}.$INC"
shell: bash