Skip to content

chore(config): introduce initial config structure to the project #8

chore(config): introduce initial config structure to the project

chore(config): introduce initial config structure to the project #8

Workflow file for this run

name: Run nvimm tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.23", "1.24", "1.25"]
steps:
- uses: actions/checkout@v6
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: |
go mod tidy
- name: Run go unit tests
run: |
make test