Skip to content

Commit

Permalink
Merge pull request #24 from ferrous-systems/pre-render-graphviz
Browse files Browse the repository at this point in the history
Process graphviz diagrams.
  • Loading branch information
jonathanpallant authored Nov 21, 2024
2 parents 176d1d5 + 6ed73c3 commit dda0dd1
Show file tree
Hide file tree
Showing 19 changed files with 689 additions and 144 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,19 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Add tools
run: sudo apt-get update -y && sudo apt-get install -y graphviz
- name: Format
run: cargo fmt --check
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Build with 1.70
- name: Build with 1.74
run: |
cargo clean
rustup update 1.70 --no-self-update
cargo +1.70 build
rustup update 1.74 --no-self-update
cargo +1.74 build
Loading

0 comments on commit dda0dd1

Please sign in to comment.