Skip to content

Add support for Actisense ELB file format (mainly BST-95 format, crea… #30

Add support for Actisense ELB file format (mainly BST-95 format, crea…

Add support for Actisense ELB file format (mainly BST-95 format, crea… #30

Workflow file for this run

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
workflow_dispatch:
env:
# run coverage and benchmarks only with the latest Go version
LATEST_GO_VERSION: 1.20
name: Check and test
jobs:
test:
strategy:
matrix:
go-version: [ "1.19", "1.20" ]
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code of this branch
uses: actions/checkout@v3
- name: Execute Go lint, check, test
run: |
make download-canboat-pgns
make init
make check
go test -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
- name: Upload coverage to Codecov
if: success() && matrix.go-version == env.LATEST_GO_VERSION && matrix.platform == 'ubuntu-latest'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.coverprofile
flags: unittests
fail_ci_if_error: false