Skip to content

feat: add module loading with dependency resolution #155

feat: add module loading with dependency resolution

feat: add module loading with dependency resolution #155

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
- "!dependabot/**"
- "!xgopilot/**"
pull_request:
branches: [ "**" ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- 1.24.x
- 1.25.x
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{matrix.go}}
- name: Download Go modules
run: go mod download
- name: Test Go code
run: go test -v -ldflags="-checklinkname=0" -race -covermode atomic -coverprofile coverage.out ./...
- name: Upload code coverage
uses: codecov/codecov-action@v5
with:
token: ${{secrets.CODECOV_TOKEN}}
disable_search: true
files: coverage.out