🦘 Vim-like, Command-line Gemini Client
gemini gemini-protocol tui smolweb vim
at main 35 lines 617 B view raw
1name: Rust ✅ 2 3on: 4 workflow_dispatch: 5 push: 6 paths: 7 - "*" 8 pull_request: 9 paths: 10 - "*" 11 12env: 13 CARGO_TERM_COLOR: always 14 15jobs: 16 check: 17 runs-on: ubuntu-latest 18 steps: 19 - name: Checkout 🛒 20 uses: actions/checkout@v3 21 22 - name: Toolchain 🧰 23 uses: actions-rs/toolchain@v1 24 with: 25 profile: minimal 26 toolchain: stable 27 components: rustfmt, clippy 28 override: true 29 30 - name: Check ✅ 31 uses: actions-rs/cargo@v1 32 continue-on-error: false 33 with: 34 command: check 35 args: --verbose