Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,19 @@ jobs:
- name: cargo test
run: cargo test --workspace --all-features

licenses:
name: Dependency licenses
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: cargo deny check licenses
uses: EmbarkStudios/cargo-deny-action@bb137d7af7e4fb67e5f82a49c4fce4fad40782fe # v2.0.20
with:
command: check licenses

codegen:
name: Codegen
runs-on: ubuntu-latest
Expand Down Expand Up @@ -259,12 +272,13 @@ jobs:
name: CI Status
if: always()
runs-on: ubuntu-latest
needs: [rust, codegen, ts-client, playground, explorer, e2e]
needs: [rust, licenses, codegen, ts-client, playground, explorer, e2e]
steps:
- name: Check all jobs
run: |
results=(
"${{ needs.rust.result }}"
"${{ needs.licenses.result }}"
"${{ needs.codegen.result }}"
"${{ needs.ts-client.result }}"
"${{ needs.playground.result }}"
Expand Down