nostrdb-rs

nostrdb in rust!
git clone git://jb55.com/nostrdb-rs
Log | Files | Refs | Submodules | README | LICENSE

rust.yml (411B)


      1 name: Rust
      2 
      3 on:
      4   push:
      5     branches: [ "master", "ci" ]
      6   pull_request:
      7     branches: [ "master" ]
      8 
      9 env:
     10   CARGO_TERM_COLOR: always
     11 
     12 jobs:
     13   build:
     14 
     15     runs-on: ubuntu-latest
     16 
     17     steps:
     18     - uses: actions/checkout@v3
     19     - name: Initialize Submodules
     20       run: git submodule update --init --recursive
     21     - name: Build
     22       run: cargo build --verbose
     23     - name: Run tests
     24       run: cargo test --verbose