rumi2 1.0.0

Rumi2 simplifies the process of deploying your web applications and servers. With seamless SSH2 integration, it effortlessly manages the publishing process to your existing server infrastructure, ensuring secure and efficient transfers every time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: build
run-name: build_test
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Set up Rust
        uses: actions-rust-lang/setup-rust-toolchain@v1
      - name: Install nitghly
        run: |
          rustup install nightly
          rustup default nightly

      - name: test
        run: |
          cargo test