mirror of
https://github.com/taigrr/bitcask
synced 2025-01-18 04:03:17 -08:00
* Added Github Actions workflow for Reviewing, Building and Testing * Added codecov workflow * Fix version of Go used for codecov workflow * Fixed coverage options
29 lines
792 B
YAML
29 lines
792 B
YAML
name: ReviewDog
|
|
on: [pull_request]
|
|
jobs:
|
|
golangci-lint:
|
|
name: runner / golangci-lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: reviewdog/action-golangci-lint@v1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
misspell:
|
|
name: runner / misspell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: reviewdog/action-misspell@v1
|
|
with:
|
|
github_token: ${{ secrets.GItHUB_TOKEN }}
|
|
shellcheck:
|
|
name: runner / shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: reviewdog/action-shellcheck@v1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|