Skip to content

Commit

Permalink
ci: add script for distribution tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Mala1180 committed Apr 3, 2024
1 parent dc6926c commit 7ae80ac
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tolerance-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Revue Tolerance Tests

on:
push:
branches: [ '**', '!main' ]

workflow_dispatch:

defaults:
run:
shell: bash

jobs:

build:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
# run on ubuntu, windows and macOS
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Run fault-tolerant tests
run: ./distribution-tests.sh

0 comments on commit 7ae80ac

Please sign in to comment.