Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

chore: update actions/upload-artifact action to v4.5.0 #298

chore: update actions/upload-artifact action to v4.5.0

chore: update actions/upload-artifact action to v4.5.0 #298

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: setup golang
uses: actions/setup-go@v5.2.0
with:
go-version-file: "go.mod"
- name: run tests
run: go test -cover -v ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: run revive
uses: morphy2k/revive-action@v2.7.1
with:
exclude: "./vendor/..."