ftp/.github/workflows/unit_tests.yaml

30 lines
980 B
YAML
Raw Normal View History

name: Units tests
on: [push, pull_request]
jobs:
checks:
name: test
runs-on: ubuntu-latest
steps:
2022-09-08 00:14:30 +02:00
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089
- name: Setup go
2022-09-08 00:14:30 +02:00
uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492
with:
2022-09-08 00:14:30 +02:00
go-version: 1.19
- uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
2021-10-29 05:27:51 +02:00
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run tests
run: go test -v -covermode=count -coverprofile=coverage.out
- name: Convert coverage to lcov
2022-09-08 00:14:30 +02:00
uses: jandelgado/gcov2lcov-action@2477d9ec11814a9326e7fdde8d315783d163edb7
- name: Coveralls
2022-09-08 00:14:30 +02:00
uses: coverallsapp/github-action@8cbef1dea373ebce56de0a14c68d6267baa10b44
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov