feat(tui): listing and toggling vpn connections poc #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [pull_request] | |
| jobs: | |
| validate-code: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Check workspace | |
| uses: EmbarkStudios/cargo-deny-action@v2 | |
| - name: Build | |
| run: cargo build --release | |
| - name: clippy | |
| run: cargo clippy | |
| - name: Test | |
| run: cargo test | |
| - name: Documentation | |
| run: cargo doc --no-deps | |
| - name: Check architecture | |
| run: ./scripts/lint_architecture.sh |