Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,26 @@ jobs:
cargo clippy --version
cargo clippy --all --all-targets --all-features -- -D warnings

macos-check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- name: Test
run: cargo test
test:
name: Test on ${{ matrix.platform.name }}
runs-on: ${{ matrix.platform.runner }}
strategy:
fail-fast: false
matrix:
platform:
- name: linux
runner: ubuntu-latest
- name: macos
runner: macos-latest
- name: windows
runner: windows-latest

ubuntu-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Test
run: cargo test
- name: Checkout reposistory
uses: actions/checkout@v6

windows-check:
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- name: Test
run: cargo test
run: cargo test -F std

msrv:
name: Check MSRV
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fix CI not running Rust tests.

## [0.6.1] - 2026-01-11

### Added
Expand Down
Loading