Skip to content

refactor: Extract main loop in handle fns, add timing logs #229

refactor: Extract main loop in handle fns, add timing logs

refactor: Extract main loop in handle fns, add timing logs #229

Workflow file for this run

name: Lint Code / Run Tests
on:
workflow_call:
workflow_dispatch:
push:
branches:
- "*"
paths:
- "src/**"
- "Cargo.*"
- build.rs
pull_request:
branches: ["master"]
paths:
- ".github/workflows/tests.yml"
- "src/**"
- "Cargo.*"
- build.rs
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
tests:
name: Run Unit Tests
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.rust == 'nightly' }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [1.70.0, stable, beta, nightly]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- run: rustup toolchain install ${{ matrix.rust }} --profile minimal
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-python@v3
- name: Set up Ruby on Windows
if: runner.os == 'Windows'
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
msys2: true
- name: Install pre-commit dependencies
run: python -m pip install pre-commit
- uses: pre-commit/[email protected]
name: Run pre-commit hooks
- name: Run Rust tests
run: cargo test