mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-26 21:07:26 +08:00
* experiment: reject bad peer info messages * v2.1.0.18 preview * add tagged sync * Add missing hypergraph changes * small tweaks to sync * allow local sync, use it for provers with workers * missing file * resolve build error * resolve sync issue, remove raw sync * resolve deletion promotion bug * resolve sync abstraction leak from tree deletion changes * rearrange prover sync * remove pruning from sync * restore removed sync flag * fix: sync, event stream deadlock, heuristic scoring of better shards * resolve hanging shutdown + pubsub proxy issue * further bugfixes: sync (restore old leaf sync), pubsub shutdown, merge events * fix: clean up rust ffi, background coverage events, and sync tweaks * fix: linking issue for channel, connectivity test aggression, sync regression, join tests * fix: disjoint sync, improper application of filter * resolve sync/reel/validation deadlock * adjust sync to handle no leaf edge cases, multi-path segment traversal * use simpler sync * faster, simpler sync with some debug extras * migration to recalculate * don't use batch * square up the roots * fix nil pointer * fix: seniority calculation, sync race condition, migration * make sync dumber * fix: tree deletion issue * fix: missing seniority merge request canonical serialization * address issues from previous commit test * stale workers should be cleared * remove missing gap check * rearrange collect, reduce sync logging noise * fix: the disjoint leaf/branch sync case * nuclear option on sync failures * v2.1.0.18, finalized
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
# The configs for this spell check can be find at /.github/actions/spelling
|
|
name: Spell checking
|
|
on:
|
|
push:
|
|
branches: [main, dev]
|
|
pull_request:
|
|
branches: [main, dev]
|
|
|
|
jobs:
|
|
spelling:
|
|
name: Spell checking
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: check-spelling
|
|
uses: check-spelling/check-spelling@v0.0.21
|
|
with:
|
|
dictionary_source_prefixes: '
|
|
{
|
|
"cspell_050923": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20230509/dictionaries/"
|
|
}'
|
|
# Extra dictionaries to verify words
|
|
extra_dictionaries:
|
|
cspell_050923:public-licenses/src/generated/public-licenses.txt
|
|
cspell_050923:cryptocurrencies/cryptocurrencies.txt
|
|
cspell_050923:software-terms/src/network-protocols.txt
|
|
cspell_050923:software-terms/src/software-terms.txt
|
|
cspell_050923:bash/src/bash-words.txt
|
|
cspell_050923:filetypes/filetypes.txt
|
|
cspell_050923:fonts/fonts.txt
|
|
cspell_050923:fullstack/src/fullstack.txt
|
|
cspell_050923:rust/src/rust.txt
|
|
cspell_050923:typescript/src/typescript.txt
|
|
experimental_apply_changes_via_bot: 1
|
|
check_file_names: 1
|