Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor to support D2 and convert to mono-repo (closes #133) #134

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Install Go
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -24,6 +28,10 @@ jobs:
- uses: actions/checkout@v4
# Install graphviz
- uses: ts-graphviz/setup-graphviz@v2
# Install Go
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down Expand Up @@ -63,4 +71,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
args: --all-targets --all-features -- -D warnings
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
# These are backup files generated by rustfmt
**/*.rs.bk

# node directories
node_modules
*.tsbuildinfo

# Personal Configs
.DS_Store

Expand Down
Loading
Loading