Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Nov 3, 2024
1 parent 0face4a commit 39efb41
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 52 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/examples.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,44 @@ env:
CARGO_TERM_COLOR: always

jobs:
examples:
timeout-minutes: 20
strategy:
matrix:
rust_version:
- stable
- "1.74.0" # MSRV
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust_version }}
- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ runner.os }}-cargo
workspaces: >
. -> target
examples/actix-kv -> target
examples/axum-kv -> target
examples/partition-rotation -> target
examples/rolling-log -> target
examples/secondary-index -> target
examples/structured -> target
examples/suffix-search -> target
examples/tokio -> target
examples/triplestore -> target
examples/tx-atomic-counter -> target
examples/tx-mpmc-queue -> target
examples/tx-partition-move -> target
- name: Build & test examples
run: node compile_examples.mjs
test:
timeout-minutes: 20
strategy:
Expand Down

0 comments on commit 39efb41

Please sign in to comment.