♻️ Simple & Efficient Gemini-to-HTTP Proxy
fuwn.net
proxy
gemini-protocol
protocol
gemini
http
rust
1name: Check ✅
2on:
3 workflow_dispatch:
4 push:
5 paths:
6 - "*"
7 pull_request:
8 paths:
9 - "*"
10env:
11 CARGO_TERM_COLOR: always
12jobs:
13 check:
14 name: Check ✅
15 runs-on: ubuntu-latest
16 steps:
17 - name: Checkout 🛒
18 uses: actions/checkout@v3
19 - name: Toolchain 🧰
20 uses: actions-rs/toolchain@v1
21 with:
22 profile: minimal
23 toolchain: stable
24 components: rustfmt, clippy
25 override: true
26 - name: Check ✅
27 uses: actions-rs/cargo@v1
28 continue-on-error: false
29 with:
30 command: check
31 args: --verbose