yaml21 lines · 623 B
1name: mapping-dry-run
2on: [push]
3jobs:
4 python:
5 runs-on: ubuntu-latest
6 steps:
7 - uses: actions/checkout@v4
8 - uses: actions/setup-python@v5
9 with:
10 python-version: "3.12"
11 - run: python agent/python/test_scope.py
12 - run: python agent/python/test_mapping.py
13 - run: python agent/python/relay.py --mapping examples/mapping.md --dry-run
14 node:
15 runs-on: ubuntu-latest
16 steps:
17 - uses: actions/checkout@v4
18 - uses: actions/setup-node@v4
19 with:
20 node-version: "22"
21 - run: npx tsx agent/node/relay.ts --mapping examples/mapping.md --dry-run