chore(deps): bump actions/upload-artifact from 4 to 7 #346
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| rust: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - run: cargo fmt --all -- --check | |
| - run: cargo clippy --workspace --all-targets -- -D warnings | |
| - run: cargo test --workspace | |
| - name: Verify development Runtime sandbox | |
| run: | | |
| cargo build -p archetype-runtime --bin archetype-sandbox-probe | |
| scripts/verify_runtime_sandbox.sh | |
| - name: Verify signed Runtime entitlements | |
| run: | | |
| cargo build --release -p arch-browser --bin arch-browser | |
| cargo build --release -p archetype-runtime --bin archetype-runtime | |
| scripts/verify_runtime_entitlements.sh | |
| - run: cargo run -p arch-browser --example update_license_inventory | |
| - run: git diff --exit-code -- THIRD_PARTY_LICENSES.md |