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
49 changes: 49 additions & 0 deletions implement_milestonetimeline_compone.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Here's the merged file with the fix applied:

// File: .github/workflows/ci.yml
name: CI

on:
push:
branches:
- main
pull_request:
release:
types: [published]

jobs:
contracts:
name: Contracts (Rust)
runs-on: ubuntu-latest
env:
SOROBAN_SDK_BUILD_SYSTEM_SUPPORTS_SPEC_SHAKING_V2: "1"
defaults:
run:
working-directory: stellargrant-contracts
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy

- name: Add WASM target
run: rustup target add wasm32v1-none

- name: Format check
run: cargo fmt --all -- --check

- name: Clippy (WASM, lib only)
run: cargo clippy --workspace --lib --target wasm32v1-none -- -D warnings

- name: Check (WASM)
run: cargo check --workspace --target wasm32v1-none

api:
name: API (Node.js)
runs-on: ubuntu-latest
services:
postgres:
image: postgres:
Loading