Skip to content

fix(conflictresolver): panic when gomod is conflict with the same mods #50

fix(conflictresolver): panic when gomod is conflict with the same mods

fix(conflictresolver): panic when gomod is conflict with the same mods #50

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Set up Node for test
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Install Dependencies
run: go mod download
- name: Run Tests
run: make test