refractium 1.1.1

Extensible low-level reverse proxy for port multiplexing and protocol-based routing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: CI
on: [push, pull_request]
permissions:
  contents: read

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy
      - name: Lint
        run: cargo clippy -- -D warnings
      - name: Check
        run: cargo check