Files
api-token-vault/.gitea/workflows/ci.yml
7000pctAUTO 2b1f505b34
Some checks failed
CI / test (push) Failing after 3s
Minimal CI with debug output
2026-01-31 23:24:37 +00:00

28 lines
614 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: .
- name: Rust setup
uses: actions/setup-rust@v4
with:
rust-version: stable
- name: Build
run: |
echo "PWD: $(pwd)"
ls -la
cat Cargo.toml || echo "No Cargo.toml in root"
if [ -f "Cargo.toml" ]; then
cargo build --verbose
else
echo "Skipping cargo build - no Cargo.toml"
fi