We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 023f5d2 commit 46c7a5cCopy full SHA for 46c7a5c
1 file changed
.github/workflows/ci.yml
@@ -98,6 +98,27 @@ jobs:
98
- name: Test
99
run: cargo test --workspace --locked
100
101
+ session-replay:
102
+ name: session replay (fast) (${{ matrix.os }})
103
+ runs-on: ${{ matrix.os }}
104
+ strategy:
105
+ fail-fast: false
106
+ matrix:
107
+ os: [ubuntu-latest, windows-latest]
108
+
109
+ steps:
110
+ - name: Checkout
111
+ uses: actions/checkout@v4
112
113
+ - name: Install Rust
114
+ uses: dtolnay/rust-toolchain@stable
115
116
+ - name: Rust cache
117
+ uses: Swatinem/rust-cache@v2
118
119
+ - name: Test (session replay)
120
+ run: cargo test -p rexos --locked --test session_replay
121
122
docs:
123
name: docs build
124
runs-on: ubuntu-latest
0 commit comments