Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
2d6ebbd
Add CMD Regressions tests
naomijub Nov 18, 2025
c400b99
clippy
naomijub Nov 18, 2025
480926a
Merge branch 'main' into naomijub/cmd-regressions
naomijub Nov 18, 2025
7da885b
Merge branch 'main' into naomijub/cmd-regressions
naomijub Nov 18, 2025
368ff67
add connector list tests
naomijub Nov 19, 2025
72f67d6
use mise
naomijub Nov 19, 2025
08b64cb
ci
naomijub Nov 19, 2025
10cdb7e
mise-action
naomijub Nov 19, 2025
27b311d
test
naomijub Nov 19, 2025
5f87965
test
naomijub Nov 19, 2025
acdb57d
test
naomijub Nov 19, 2025
61c36b9
test
naomijub Nov 19, 2025
e9ba83d
test
naomijub Nov 19, 2025
3cdeeec
test
naomijub Nov 19, 2025
a7dd91f
test
naomijub Nov 19, 2025
d93ae3e
test
naomijub Nov 19, 2025
db28093
test
naomijub Nov 19, 2025
aae49eb
still ignoring?
naomijub Nov 20, 2025
9bca4c5
Update regressions/examples/is_deprecated.rs
naomijub Nov 20, 2025
1b7c66a
Merge branch 'main' into naomijub/cmd-regressions
naomijub Nov 20, 2025
2bcd344
retry
naomijub Nov 20, 2025
6b5aa21
retry
naomijub Nov 20, 2025
41673fa
retry
naomijub Nov 20, 2025
c39e204
test
naomijub Nov 20, 2025
160f5bd
try-explicit-cache
naomijub Nov 20, 2025
438fe5a
retry
naomijub Nov 20, 2025
e7339c1
test
naomijub Nov 20, 2025
70c3f6d
Merge branch 'main' into naomijub/cmd-regressions
naomijub Nov 24, 2025
6243c3f
Merge branch 'main' into naomijub/cmd-regressions
naomijub Nov 24, 2025
0dd4728
build rover
naomijub Nov 24, 2025
17603d8
test
naomijub Nov 24, 2025
721976b
rover
naomijub Nov 24, 2025
3b3d06a
test2
naomijub Nov 24, 2025
c011950
dual tests
naomijub Nov 24, 2025
293631d
retry
naomijub Nov 25, 2025
6a34d7f
test
naomijub Nov 25, 2025
318b76d
test
naomijub Nov 25, 2025
fe9bd66
test
naomijub Nov 25, 2025
c22a6cc
Merge branch 'main' into naomijub/cmd-regressions
naomijub Nov 25, 2025
74d65e1
test
naomijub Nov 25, 2025
526c2d9
test
naomijub Nov 25, 2025
e705c99
test
naomijub Nov 25, 2025
18a91d7
test
naomijub Nov 25, 2025
aae81a3
test
naomijub Nov 25, 2025
9427468
test
naomijub Nov 25, 2025
2fa468d
test
naomijub Nov 25, 2025
18b3342
fix
naomijub Nov 25, 2025
483f2f2
error-case
naomijub Nov 25, 2025
1e4f797
test
naomijub Nov 25, 2025
17ce818
test
naomijub Nov 25, 2025
ee42ba7
test
naomijub Nov 25, 2025
17ad973
last
naomijub Nov 25, 2025
54f9dae
try another trycmd spacing thing
dylan-apollo Nov 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/run-commands-e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
on:
push:
branches:
- main
pull_request:
merge_group:

jobs:
introspection_e2e:
name: introspection E2E
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install stable@stable toolchain
uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1.15.2
- name: Build Services
run: cargo build -r -p regressions --example is_deprecated
- name: Run Services
run: !
./target/release/examples/is_deprecated &
echo $! > is_deprecated_service.pid
- name: Run Tests
run: cargo test --package regressions --test cli_tests -- introspection_cli_tests
- name: Kill Service
run: kill $(cat is_deprecated_service.pid)

connectors_e2e:
name: connectors E2E
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install stable@stable toolchain
uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1.15.2
- name: Run Tests
run: cargo test --package regressions --test cli_tests -- connectors_cli_tests
Loading
Loading