Skip to content

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: "1.22.x"
jobs:
# lint:
# name: lint
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
#
# - name: Install Go
# uses: actions/setup-go@v3
# with:
# go-version: ${{ env.GO_VERSION }}
#
# - name: lint
# uses: golangci/golangci-lint-action@v3
test:
name: test
# needs: lint
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v3
- name: Go cache
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ env.GO_VERSION }}-cache
- name: Install Task
uses: arduino/setup-task@v1
with:
version: 3.x
- name: Test
run: task test
- name: Submit coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: ${{ env.GITHUB_REPOSITORY }}