is-prime-for-primitive-int 0.5.1

is_prime for primitive ineger type
Documentation
image: "rust:latest"

.run_test: &run_test
  script:
    - rustup component add rustfmt clippy
    - rustup --version && rustc --version && cargo --version
    - cargo fmt --all -- --check
    - cargo clippy --workspace --all-targets --all-features --verbose -- -D warnings
    - cargo test --workspace --verbose

# Use cargo to test the project
test:stable:
  <<: *run_test
  before_script:
    - rustup default stable

test:beta:
  <<: *run_test
  before_script:
    - rustup default beta