Skip to content

Commit 0878c41

Browse files
authored
Merge pull request #2 from ppipada/interfacebugfix
Interfacebugfix
2 parents 2304298 + 63f600a commit 0878c41

35 files changed

Lines changed: 944 additions & 135 deletions

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "gomod"
9+
directory: "/"
10+
open-pull-requests-limit: 10
11+
schedule:
12+
interval: "monthly"
13+
commit-message:
14+
prefix: "chore"
15+
include: "scope"

.github/workflows/lint.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: LintTest
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
#
10+
# Cancel outdated runs for the same branch / PR
11+
#
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
permissions:
17+
contents: read
18+
19+
jobs:
20+
go:
21+
name: Go LintTest
22+
runs-on: ubuntu-24.04
23+
24+
steps:
25+
- name: Checkout code
26+
uses: actions/checkout@v4
27+
28+
- name: Set-up Go
29+
uses: actions/setup-go@v5
30+
with:
31+
go-version-file: "go.mod"
32+
33+
- name: golangci-lint
34+
uses: golangci/golangci-lint-action@v8
35+
with:
36+
args: --verbose
37+
version: v2.6.1
38+
39+
- name: go-test
40+
shell: bash
41+
run: go test ./... -v

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@
1616

1717
refdir
1818
!analysis/refdir
19+
ignored.txt
20+
godepgraph.png

0 commit comments

Comments
 (0)