mirror of
https://github.com/CPunch/gopenfusion.git
synced 2024-11-12 19:20:06 +00:00
27 lines
449 B
YAML
27 lines
449 B
YAML
name: unit-tests
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- cmd/**
|
|
- config/**
|
|
- internal/**
|
|
- login/**
|
|
- shard/**
|
|
- go.mod
|
|
- go.sum
|
|
- .github/workflows/tests.yaml
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.21.x'
|
|
- name: Test with the Go CLI
|
|
run: go test -v ./...
|