Skip to content

Test

Test #1016

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: |
0 0 * * *
jobs:
test:
name: Unit test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.21.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Run test without integration-test
run: go test -v -short ./...