mirror of
https://github.com/minio/minio-rs.git
synced 2025-12-06 23:36:52 +08:00
* updated inline doc * updated inline doc * API naming conform AWS * fixed clippy issues * fixed minor API naming issues
36 lines
768 B
YAML
36 lines
768 B
YAML
name: MinIO Rust Library
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build
|
|
run: |
|
|
cargo --version
|
|
cargo fmt --all -- --check
|
|
cargo clippy --all-targets --all-features
|
|
cargo build --bins --examples --tests --benches --verbose
|
|
|
|
- name: Run tests
|
|
run: |
|
|
./tests/start-server.sh
|
|
export SERVER_ENDPOINT=localhost:9000
|
|
export ACCESS_KEY=minioadmin
|
|
export SECRET_KEY=minioadmin
|
|
export ENABLE_HTTPS=1
|
|
export SSL_CERT_FILE=./tests/public.crt
|
|
cargo test --verbose -- --nocapture
|