Skip to content

Commit

Permalink
Add a CI check to ensure heed3 is not erasing heed
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Dec 3, 2024
1 parent 07fabb5 commit 8f4ab77
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
bash convert-to-heed3.sh
cargo check -p heed3
check_all_features:
check-all-features:
name: Check all the features of the heed project
runs-on: ${{ matrix.os }}
env:
Expand All @@ -80,7 +80,7 @@ jobs:
cargo clean
cargo check --all-features -p heed
check_all_features-heed3:
check-all-features-heed3:
name: Check all the features of the heed3 project
runs-on: ${{ matrix.os }}
env:
Expand Down Expand Up @@ -171,3 +171,11 @@ jobs:
components: rustfmt
- name: Run cargo fmt
run: cargo fmt --check

no-heed3-in-heed-folder:
name: Ensure the heed3 Carho.toml is not erasing heed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check name is heed with grep
run: grep -q 'name = "heed"' heed/Cargo.toml

0 comments on commit 8f4ab77

Please sign in to comment.