Skip to content

chore: add ignores to ci (#3) #13

chore: add ignores to ci (#3)

chore: add ignores to ci (#3) #13

Workflow file for this run

name: Check
permissions:
contents: read
on:
pull_request:
branches:
- main
paths-ignore:
- "example/**"
- "**/*.md"
- "**/*.yaml"
push:
branches:
- main
jobs:
job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
- name: 🧹 Lint
uses: golangci/golangci-lint-action@v4
- name: 🧪 Test
run: go test -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}