From 28c3763eaf9b901376f542fc512d09dda772fb70 Mon Sep 17 00:00:00 2001 From: KeisukeYamashita <19yamashita15@gmail.com> Date: Tue, 3 Dec 2024 01:42:14 +0100 Subject: [PATCH] feat(.github): add schema generation test CI (#393) Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com> --- .github/workflows/ci.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3881ef9..07eea34 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -47,6 +47,17 @@ jobs: bats-version: 1.9.0 - run: bats cli/e2e --filter-tags ${{ matrix.tag }} + schema: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - run: cargo run --package schema -- --path schema.json + test: runs-on: ubuntu-latest steps: