Skip to content

Commit

Permalink
feat(sidecar): ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevbirb committed Jul 17, 2024
1 parent 0d54896 commit 51fb95e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions bolt-sidecar/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ci

on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
cargo-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-nextest
locked: true
- name: Run all tests
run: cargo nextest run --workspace --retries 3

0 comments on commit 51fb95e

Please sign in to comment.