Skip to repository content24 lines · 659 B · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:38:28.197Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
action.yml
1name: "Run tests"
2description: "Runs the tests"
3
4runs:
5 using: "composite"
6 steps:
7 - name: Install nextest
8 uses: taiki-e/install-action@a6b2e2dcd845ddd7f509ce4f3ed3d922b80cc5d9 # 2.84.0
9 with:
10 tool: nextest
11
12 - name: Install Node
13 uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
14 with:
15 node-version: "18"
16
17 - name: Limit target directory size
18 shell: bash -euxo pipefail {0}
19 run: script/clear-target-dir-if-larger-than 350 200
20
21 - name: Run tests
22 shell: bash -euxo pipefail {0}
23 run: cargo nextest run --workspace --no-fail-fast --failure-output immediate-final
24