mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
baa0e09ad2
* chore: Resize logo and update browser support in READMEs (#284) * chore: Resize logo and update browser support in READMEs * docs: Update Coverage Status badge URL * chore: add typos check linter in github actions (#285) * refactor: Disable JSON handling in logger/logger.go. * chore: Standardize spelling and add typos check workflows. * refactor: Update SQLite driver import for browsing data package. * refactor: Refactor browsing data package to use SQLite driver instead of SQLite3. * docs: Add contribution guidelines to README file (#289) * chore: Refactor file and directory names for improved organization and consistency
29 lines
563 B
YAML
29 lines
563 B
YAML
name: Lint
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
workflow_dispatch:
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set Golang
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: "1.21.x"
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check spelling with custom config file
|
|
uses: crate-ci/typos@master
|
|
with:
|
|
config: ./.typos.toml
|
|
|
|
- name: Lint
|
|
uses: golangci/golangci-lint-action@v3
|
|
with:
|
|
version: latest
|