From 95e5c14c7c1f21340c11b39e2a3f3da59f2f32d3 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 22:54:35 +0000 Subject: [PATCH] Initial upload: api-token-vault Rust CLI tool with encrypted vault storage --- app/api-token-vault/.gitea/workflows/ci.yml | 31 +++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 app/api-token-vault/.gitea/workflows/ci.yml diff --git a/app/api-token-vault/.gitea/workflows/ci.yml b/app/api-token-vault/.gitea/workflows/ci.yml new file mode 100644 index 0000000..a851f6d --- /dev/null +++ b/app/api-token-vault/.gitea/workflows/ci.yml @@ -0,0 +1,31 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-rust@v1 + with: + rust-version: '1.70' + components: rustfmt, clippy + - run: cargo build --all-features + - run: cargo test --all + - run: cargo clippy --all-features -- -D warnings + + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-rust@v1 + with: + rust-version: '1.70' + components: rustfmt + - name: Check formatting + run: cargo fmt -- --check