9fa97ebb5c
Test and build / test_floonet-rs (push) Has been cancelled
nostr-rs-relay + a default-deny admission pipeline (kinds 0,3,5,13,1059, 10002,10050,27235 only), NIP-42 auth, neutral NIP-11, a built-in name authority (paid names via GoblinPay), and a config-toggled co-located mixnet exit supervisor. Single binary + installer + hardened systemd, or Docker Compose. Relay core untouched (additive admission + authority).
40 lines
774 B
YAML
40 lines
774 B
YAML
name: Test and build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test_floonet-rs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Update local toolchain
|
|
run: |
|
|
sudo apt-get install -y protobuf-compiler
|
|
rustup update
|
|
rustup component add clippy
|
|
rustup install nightly
|
|
|
|
- name: Toolchain info
|
|
run: |
|
|
cargo --version --verbose
|
|
rustc --version
|
|
cargo clippy --version
|
|
|
|
# - name: Lint
|
|
# run: |
|
|
# cargo fmt -- --check
|
|
# cargo clippy -- -D warnings
|
|
|
|
- name: Test
|
|
run: |
|
|
cargo check
|
|
cargo test --all
|
|
|
|
- name: Build
|
|
run: |
|
|
cargo build --release --locked
|