Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias authored Aug 14, 2024
1 parent c665b6d commit 4f2076c
Showing 1 changed file with 30 additions and 2 deletions.
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

0 comments on commit 4f2076c

Please sign in to comment.