Skip to content

backup: fix message channels #912

backup: fix message channels

backup: fix message channels #912

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- '*'
paths:
- '**.go'
- '.github/workflows/**'
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '^1.20'
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
run: |
go test -v -timeout 300s -cover ./...