mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-22 09:09:07 -05:00
264c03bbab
* improvement: use appropriate paths for systemd example * improvement: add a configurable postgres write conn string This adds a new configurable connection string for postgres writes. * improvement: document pg connection_write config * build: upgrade checkout action for github ci --------- Co-authored-by: Petr Kracik <petrkr@petrkr.net> Co-authored-by: Kieran <kieran@harkin.me> Co-authored-by: Greg Heartsfield <scsibug@imap.cc>
41 lines
802 B
YAML
41 lines
802 B
YAML
name: Test and build
|
|
|
|
on:
|
|
workflow_call:
|
|
push:
|
|
branches-ignore:
|
|
- master
|
|
|
|
jobs:
|
|
test_nostr-rs-relay:
|
|
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
|