Add code to create a client connected to the network
Some checks failed
Build library & run tests / build (push) Failing after 22s

This commit is contained in:
2024-06-22 12:57:41 +02:00
parent 1eaeb68d82
commit 15d44b6daa
5 changed files with 69 additions and 13 deletions

View File

@@ -7,7 +7,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run clippy
run: nix develop . -c cargo clippy
- name: Build & test
run: nix build
- name: Run clippy (tcp feature)
run: nix develop . -c cargo clippy --no-default-features --features tcp
- name: Run clippy (unix feature)
run: nix develop . -c cargo clippy --no-default-features --features unix
- name: Build & test (tcp feature)
run: nix build .#tcp
- name: Build & test (unix feature)
run: nix build .#unix