Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

chore: minor best practices #43

chore: minor best practices

chore: minor best practices #43

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout
- name: Install Go
uses: actions/setup-go
with:
go-version: "1.21.1"
- name: Install Task
uses: arduino/setup-task
- name: Install dependencies
run: task dep
- name: Lint
run: task lint
- name: Test
run: task test