Skip to content

chore: uncomment lint and test taskfile tasks #3

chore: uncomment lint and test taskfile tasks

chore: uncomment lint and test taskfile tasks #3

Workflow file for this run

name: Test and lint golang
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- uses: arduino/setup-task@v1
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run lint
run: task lint
- name: Run tests
run: task test