Skip to content

Merge pull request #1 from will-wow/progress-bar #38

Merge pull request #1 from will-wow/progress-bar

Merge pull request #1 from will-wow/progress-bar #38

Workflow file for this run

name: Lint and Test Main
on:
push:
branches:
- main
jobs:
Test-And-Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
cache-dependency-path: go.sum
- name: Install Task
uses: arduino/setup-task@v1
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
- name: Run tests
run: task test:all