mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
Revert #362, back to Rust toolchain v1.88.0, as the newer version causes an issue in the runtime release publishing flow.
23 lines
496 B
YAML
23 lines
496 B
YAML
name: Check licenses
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Install Rust toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: 1.88.0
|
|
override: true
|
|
- name: Verify Licenses
|
|
working-directory: operator
|
|
run: |
|
|
cargo install cargo-license@0.7.0
|
|
./scripts/verify-licenses.sh
|