Skip to content
Merged
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: 30 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- id: check_version
uses: radumarias/action-check-version-changed-rust@v1

test_rust:
test_rust_macos_windows:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
Expand All @@ -56,7 +56,35 @@ jobs:

- name: tests
run: cargo test --release --all-features


test_rust_linux:
runs-on: ubuntu-latest
steps:
- name: install
run: apt-get install libatomic1

- uses: actions/checkout@v4

- name: rustup
run: rustup update

- name: build
run: |
cargo build --all-targets --all-features
cargo build --release --all-targets --all-features

- name: fmt check
run: cargo fmt --all --check

- name: check
run: cargo check --all-targets

- name: clippy
run: cargo clippy --all-targets

- name: tests
run: cargo test --release --all-features

test_py_linux:
runs-on: ubuntu-latest
strategy:
Expand Down