Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.git
.github
target
.runtime
*.log
tests
verification
docs
*.md
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ jobs:
run: ./scripts/verify.sh all --profile ci

- name: Shellcheck
run: shellcheck scripts/verify.sh scripts/lib/*.sh scripts/phases/*.sh
continue-on-error: true
run: shellcheck --shell=bash scripts/verify.sh scripts/lib/*.sh scripts/phases/*.sh start.sh stop.sh install.sh

- name: Cargo audit
run: cargo install cargo-audit --locked && cargo audit

- name: Cargo deny
run: cargo install cargo-deny --locked && cargo deny check

release-build:
runs-on: ubuntu-latest
Expand Down
Loading
Loading