Initial commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
name: external-agent-smoke
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
smoke:
|
||||
name: ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
- windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.11"
|
||||
- name: Install package
|
||||
run: python -m pip install -e .
|
||||
- name: Run external-agent smoke checks
|
||||
run: >
|
||||
python -m pytest -q
|
||||
tests/test_cli_app.py::CliInitProjectTests::test_external_agent_preflight_accepts_fake_agent_binaries
|
||||
tests/test_external_agent_preflight.py
|
||||
Reference in New Issue
Block a user