fix(deps): update act to 0.2.66 #155
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: { } | |
pull_request: { } | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
- name: Install dependencies | |
run: go mod download | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
- name: Run lint | |
run: task lint | |
- name: Run tests | |
run: task test |