Skip to content
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