mirror of
https://github.com/taigrr/bitcask
synced 2025-01-18 04:03:17 -08:00
Removed Github workflows
This commit is contained in:
parent
90dd53c573
commit
3987e56e79
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
@ -1,2 +0,0 @@
|
|||||||
github: prologic
|
|
||||||
patreon: prologic
|
|
14
.github/dependabot.yml
vendored
14
.github/dependabot.yml
vendored
@ -1,14 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: gomod
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: daily
|
|
||||||
time: "19:00"
|
|
||||||
open-pull-requests-limit: 10
|
|
||||||
- package-ecosystem: docker
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: weekly
|
|
||||||
time: "19:00"
|
|
||||||
open-pull-requests-limit: 10
|
|
9
.github/labeler.yml
vendored
9
.github/labeler.yml
vendored
@ -1,9 +0,0 @@
|
|||||||
documentation:
|
|
||||||
- "**/*.md"
|
|
||||||
|
|
||||||
tests:
|
|
||||||
- "**/*_test.go"
|
|
||||||
|
|
||||||
dependencies:
|
|
||||||
- go.mod
|
|
||||||
- go.sum
|
|
23
.github/workflows/codecov.yml
vendored
23
.github/workflows/codecov.yml
vendored
@ -1,23 +0,0 @@
|
|||||||
name: Coverage
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
name: Test and Report
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Setup Go
|
|
||||||
uses: actions/setup-go@v1
|
|
||||||
with:
|
|
||||||
go-version: 1.13.x
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
- name: Test
|
|
||||||
run: go test -v -cover -coverprofile=coverage.txt -covermode=atomic -race .
|
|
||||||
- name: Report
|
|
||||||
uses: codecov/codecov-action@v1
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
|
15
.github/workflows/docker.yml
vendored
15
.github/workflows/docker.yml
vendored
@ -1,15 +0,0 @@
|
|||||||
name: Docker
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build Image
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
- name: Build
|
|
||||||
run: docker build -t bitcask .
|
|
27
.github/workflows/go.yml
vendored
27
.github/workflows/go.yml
vendored
@ -1,27 +0,0 @@
|
|||||||
---
|
|
||||||
name: Go
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
name: Build and Test
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x]
|
|
||||||
platform: [ubuntu-latest, macos-latest]
|
|
||||||
runs-on: ${{ matrix.platform }}
|
|
||||||
steps:
|
|
||||||
- name: Setup Go ${{ matrix.go-version }}
|
|
||||||
uses: actions/setup-go@v2
|
|
||||||
with:
|
|
||||||
go-version: ${{ matrix.go-version }}
|
|
||||||
id: go
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
- name: Build
|
|
||||||
run: go build -v .
|
|
||||||
- name: Test
|
|
||||||
run: go test -v -race .
|
|
32
.github/workflows/reviewdog.yml
vendored
32
.github/workflows/reviewdog.yml
vendored
@ -1,32 +0,0 @@
|
|||||||
name: ReviewDog
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
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
|
|
29
.github/workflows/stale.yml
vendored
29
.github/workflows/stale.yml
vendored
@ -1,29 +0,0 @@
|
|||||||
name: Mark stale issues and pull requests
|
|
||||||
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: "0 0 * * *"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
stale:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/stale@v1
|
|
||||||
with:
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
stale-issue-message: |-
|
|
||||||
This Issue has gone stale and will be closed automatically.
|
|
||||||
|
|
||||||
If this is incorrect, please reopen and add the label `on hold`.
|
|
||||||
|
|
||||||
Thank you.
|
|
||||||
stale-pr-message: |-
|
|
||||||
This Pull Request has gone stale and will be closed automatically.
|
|
||||||
|
|
||||||
If this is incorrect, please reopen and add the label `on hold`.
|
|
||||||
|
|
||||||
Thank you.
|
|
||||||
stale-issue-label: 'stale'
|
|
||||||
exempt-issue-label: 'on hold'
|
|
||||||
stale-pr-label: 'stale'
|
|
||||||
exempt-pr-label: 'on hold'
|
|
Loading…
x
Reference in New Issue
Block a user