Skip to content

Bump aruba from 2.1.0 to 2.2.0 #3160

Bump aruba from 2.1.0 to 2.2.0

Bump aruba from 2.1.0 to 2.2.0 #3160

Workflow file for this run

name: test
on:
- push
jobs:
unit-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: raviqqe/enable-homebrew@main
- run: tools/ci/setup.sh
- run: cargo test
env:
RUST_MIN_STACK: 8388608
integration-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: raviqqe/enable-homebrew@main
- run: tools/ci/setup.sh
- uses: ruby/setup-ruby@v1
- run: sudo apt update --fix-missing
- run: sudo apt install clang valgrind
- run: tools/integration_test.sh
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo fmt -- --check
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: raviqqe/enable-homebrew@main
- run: tools/ci/setup.sh
- run: cargo clippy -- -D warnings
spell-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: streetsidesoftware/cspell-action@main
with:
files: "**/*.{feature,md,rs}"