Skip to content

chore(deps): bump criterion from 0.7.0 to 0.8.0 #283

chore(deps): bump criterion from 0.7.0 to 0.8.0

chore(deps): bump criterion from 0.7.0 to 0.8.0 #283

Workflow file for this run

on:
pull_request:
paths:
- '**.rs'
- .github/workflows/rustlib.yml
- Cargo.toml
workflow_dispatch:
name: Library testing
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
tag: [latest, '5.5', '5.6', '5.7', '5.8', '5.9', '6.0', '6.1', '6.2', '6.3', '6.4', '6.5']
features: ['']
include:
- tag: latest
features: --all-features
runs-on: ubuntu-latest
services:
languagetool:
image: erikvl87/languagetool:${{ matrix.tag }}
ports:
- 8010:8010
env:
langtool_maxTextLength: 1500
env:
LANGUAGETOOL_HOSTNAME: http://localhost
LANGUAGETOOL_PORT: 8010
steps:
- name: Checkout sources
uses: actions/checkout@v6
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
- run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
- run: cargo nextest run ${{ matrix.features }} --no-capture