Skip to content

TT-10413 Poc/processors #183

TT-10413 Poc/processors

TT-10413 Poc/processors #183

Workflow file for this run

name: CI tests
on:
pull_request:
push:
branches: [main]
jobs:
ci-test:
name: gotest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Install Task
uses: arduino/setup-task@v1
with:
version: 3
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Verify dependencies
run: go work sync
- name: Build
run: task build
- name: Run tests
run: task test