test: add signal encryption test

This commit is contained in:
braginini
2021-06-03 11:39:19 +02:00
parent 45697a0000
commit 9b327ea6ba
3 changed files with 62 additions and 5 deletions

17
.github/workflows/golang-test.yml vendored Normal file
View File

@ -0,0 +1,17 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.16.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...