Fix CI workflow path filter to ignore api-token-vault subdirectory
Some checks failed
CI / test (push) Failing after 2s

This commit is contained in:
2026-01-31 23:10:31 +00:00
parent 1aaf8b0a1f
commit b7963b3b76

View File

@@ -3,8 +3,12 @@ name: CI
on: on:
push: push:
branches: [main] branches: [main]
paths-ignore:
- 'api-token-vault/**'
pull_request: pull_request:
branches: [main] branches: [main]
paths-ignore:
- 'api-token-vault/**'
jobs: jobs:
test: test:
@@ -13,19 +17,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-rust@v1 - uses: actions/setup-rust@v1
with: with:
rust-version: '1.70' rust-version: stable
components: rustfmt, clippy
- run: cargo build --all-features - run: cargo build --all-features
- run: cargo test --all - run: cargo test --all-features
- run: cargo clippy --all-features -- -D warnings - 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