Skip to content

Add Github Actions to lint, test and produce code coverage #7

Add Github Actions to lint, test and produce code coverage

Add Github Actions to lint, test and produce code coverage #7

Workflow file for this run

name: datareader
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@main
- name: setup
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install dependencies
run: |
go get .
make common-deps
- name: run tests
run: |
make test-short
# make test-coverage