diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml new file mode 100644 index 00000000..2c557020 --- /dev/null +++ b/.github/workflows/unit.yaml @@ -0,0 +1,18 @@ +name: unit + +on: + workflow_dispatch: + pull_request: + push: + branches: + - main + +jobs: + unit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version-file: "go.mod" + - run: make test-unit