mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Notably removes the `kvdb-rocksdb` patch via updating the Substrate version used to one which disables the `jemalloc` feature itself. Simplifies the path of the built WASM file within the Dockerfile to consumers. This also ensures if the image is built, the path of the WASM file is as expected (prior unasserted).
19 lines
427 B
YAML
19 lines
427 B
YAML
name: Daily Deny Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
deny:
|
|
name: Run cargo deny
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0
|
|
|
|
- name: Install cargo deny
|
|
run: cargo +1.91.1 install cargo-deny --version =0.18.7
|
|
|
|
- name: Run cargo deny
|
|
run: cargo deny -L error --all-features check --hide-inclusion-graph
|