Skip to content

Commit d070e4d

Browse files
committed
add boilerplate files
This commit adds the boilerplate files and fixes the CI workflows.
1 parent 64fdc6b commit d070e4d

File tree

9 files changed

+3159
-6
lines changed

9 files changed

+3159
-6
lines changed

.github/workflows/check.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ on:
2121
concurrency:
2222
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
2323
cancel-in-progress: true
24-
defaults:
25-
run:
26-
working-directory: ./optd-persistent
2724
name: check
2825
jobs:
2926
fmt:

.github/workflows/test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ on:
1717
concurrency:
1818
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
1919
cancel-in-progress: true
20-
defaults:
21-
run:
22-
working-directory: ./optd-persistent
2320
name: test
2421
jobs:
2522
required:

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Contains compiled files and executables.
2+
debug/
3+
target/
4+
5+
# These are backup files generated by rustfmt.
6+
**/*.rs.bk
7+
8+
# Ignore any database files.
9+
**/*.db
10+
11+
# We will check in all code-generated entity files, as newer versions of `sea-orm-cli` might
12+
# conflict with previous versions.
13+
# **/entities

0 commit comments

Comments
 (0)