Skip to content

Commit

Permalink
Merge branch 'avoid-collisions-between-legacy-and-current-archive' in…
Browse files Browse the repository at this point in the history
…to optimize-hash-queries-with-lookup-table
  • Loading branch information
Ivansete-status committed Jul 25, 2024
2 parents 8152f50 + cd35049 commit 7090ba8
Show file tree
Hide file tree
Showing 41 changed files with 1,776 additions and 2,108 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,25 @@ jobs:
nim_wakunode_image: ${{ needs.build-docker-image.outputs.image }}
test_type: node-optional
debug: waku*

lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2 # In PR, has extra merge commit: ^1 = PR, ^2 = base

- name: Check nph formatting
# Pin nph to a specific version to avoid sudden style differences.
# Updating nph version should be accompanied with running the new
# version on the fluffy directory.
run: |
VERSION="v0.5.1"
ARCHIVE="nph-linux_x64.tar.gz"
curl -L "https://github.com/arnetheduck/nph/releases/download/${VERSION}/${ARCHIVE}" -o ${ARCHIVE}
tar -xzf ${ARCHIVE}
shopt -s extglob # Enable extended globbing
./nph examples waku tests tools apps *.@(nim|nims|nimble)
git diff --exit-code
Loading

0 comments on commit 7090ba8

Please sign in to comment.