Skip to content

remove redundant code #47

remove redundant code

remove redundant code #47

Workflow file for this run

name: test
on:
push:
branches:
- 'main'
- 'feature/**'
pull_request:
branches:
- 'main'
jobs:
test:
strategy:
matrix:
platform:
- 'ubuntu-latest'
# - 'macos-latest'
# - 'windows-latest'
go-version:
- '1.22.x'
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # to retrieve git tags
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run CI tests
shell: bash
run: |
make ci-test