Skip to repository content29 lines · 767 B · yaml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T04:29:35.544Z 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 on Windows"
2description: "Runs the tests on Windows"
3
4inputs:
5 working-directory:
6 description: "The working directory"
7 required: true
8 default: "."
9
10runs:
11 using: "composite"
12 steps:
13 - name: Install test runner
14 working-directory: ${{ inputs.working-directory }}
15 uses: taiki-e/install-action@a6b2e2dcd845ddd7f509ce4f3ed3d922b80cc5d9 # 2.84.0
16 with:
17 tool: nextest
18
19 - name: Install Node
20 uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
21 with:
22 node-version: "18"
23
24 - name: Run tests
25 shell: powershell
26 working-directory: ${{ inputs.working-directory }}
27 run: |
28 cargo nextest run --workspace --no-fail-fast --failure-output immediate-final
29