Skip to content

Commit d433739

Browse files
authored
Initial implementation (#1)
1 parent 8395caa commit d433739

File tree

9 files changed

+2388
-0
lines changed

9 files changed

+2388
-0
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gomod
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
- package-ecosystem: github-actions
8+
directory: "/"
9+
schedule:
10+
interval: daily

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
schedule:
9+
- cron: '0 0 * * 0' # run "At 00:00 on Sunday"
10+
11+
# See https://github.com/cristalhq/.github/tree/main/.github/workflows
12+
jobs:
13+
build:
14+
uses: cristalhq/.github/.github/workflows/[email protected]
15+
16+
vuln:
17+
uses: cristalhq/.github/.github/workflows/[email protected]

0 commit comments

Comments
 (0)