repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | name: CI |
| #2 | |
| #3 | on: |
| #4 | push: |
| #5 | branches: [main, master] |
| #6 | pull_request: |
| #7 | branches: [main, master] |
| #8 | |
| #9 | jobs: |
| #10 | test: |
| #11 | runs-on: ubuntu-latest |
| #12 | strategy: |
| #13 | matrix: |
| #14 | python-version: ["3.9", "3.10", "3.11", "3.12"] |
| #15 | |
| #16 | steps: |
| #17 | - uses: actions/checkout@v4 |
| #18 | |
| #19 | - name: Set up Python ${{ matrix.python-version }} |
| #20 | uses: actions/setup-python@v5 |
| #21 | with: |
| #22 | python-version: ${{ matrix.python-version }} |
| #23 | |
| #24 | - name: Install dependencies |
| #25 | run: | |
| #26 | python -m pip install --upgrade pip |
| #27 | pip install -e ".[all,dev]" |
| #28 | |
| #29 | - name: Run tests |
| #30 | run: pytest tests/ -v --tb=short |
| #31 | |
| #32 | build: |
| #33 | runs-on: ubuntu-latest |
| #34 | steps: |
| #35 | - uses: actions/checkout@v4 |
| #36 | |
| #37 | - name: Set up Python |
| #38 | uses: actions/setup-python@v5 |
| #39 | with: |
| #40 | python-version: "3.11" |
| #41 | |
| #42 | - name: Install build dependencies |
| #43 | run: | |
| #44 | python -m pip install --upgrade pip |
| #45 | pip install build twine |
| #46 | |
| #47 | - name: Build package |
| #48 | run: python -m build |
| #49 | |
| #50 | - name: Check package with twine |
| #51 | run: twine check dist/* |
| #52 |