Skip to content

Commit

Permalink
chore: remove bad formatting test, refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebond committed Jul 6, 2023
1 parent 29fdf40 commit d27e136
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
cargo fmt
test -z "$(git status --porcelain)" || (echo 'Changes detected after running cargo fmt'; git status; git --no-pager diff; false)
- name: Generate
run: cargo run -- manifests > manifests/crd.yml
- name: Diff
run: test -z "$(git status --porcelain)" || (echo 'Changes detected after generating manifests'; git status; git --no-pager diff; false)
run: |
cargo run -- manifests > manifests/crd.yml
test -z "$(git status --porcelain)" || (echo 'Changes detected after generating manifests'; git status; git --no-pager diff; false)
- name: Run tests
run: cargo test

Expand Down

0 comments on commit d27e136

Please sign in to comment.