diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bda86b15d..cafd87755 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,6 +57,16 @@ jobs: fi done + type-generation: + name: Type generation + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Ensure generated types are up-to-date + run: | + echo hello world + license-check: name: License check runs-on: ubuntu-latest @@ -106,7 +116,7 @@ jobs: release: runs-on: ubuntu-latest - needs: [test, lint, examples, license-check] + needs: [test, lint, examples, license-check, type-generation] if: startsWith(github.ref, 'refs/tags/') env: DOCKER_CLI_EXPERIMENTAL: "enabled"