Skip to content

WIP: add option to disable versioning in EOS upon PUT request #31

WIP: add option to disable versioning in EOS upon PUT request

WIP: add option to disable versioning in EOS upon PUT request #31

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- "*"
workflow_dispatch:
jobs:
unit-tests:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Test
run: make test-go
env:
COVER_PROFILE: ${{ github.event_name == 'push' && 'coverage.out' || '' }}
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1
if: github.event_name == 'push'
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.out
force-coverage-parser: go