[wip] Clippy/warning fixes #623
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Build and Test | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
rust-toolchain: [stable] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
components: rustfmt | |
override: true | |
- name: Install Build Essentials | |
run: sudo apt-get install build-essential mingw-w64 gcc | |
- name: Verify versions | |
run: rustc --version && rustup --version && cargo --version | |
- name: Cache build artifacts | |
id: cache-cargo | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ matrix.rust-toolchain }} | |
- name: Cache integration artifacts | |
id: cache-integration | |
uses: actions/cache@v2 | |
with: | |
path: | | |
tests/integration/runner/node_modules | |
key: ${{ runner.os }}-integration-${{ matrix.rust-toolchain }} | |
- name: Build RepliByte | |
run: cargo build --release --all-features | |
- name: Start Postgres, MySQL, MongoDB and MinIO Containers | |
run: docker-compose -f "docker-compose-dev.yml" up -d --build | |
- name: Test RepliByte | |
env: | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
run: cargo test --all-features | |
# - name: Bench RepliByte | |
# run: cargo bench | |
#- name: Check RepliByte code style | |
# run: cargo fmt -- --check | |
- name: Stop Postgres, MySQL, MongoDB and MinIO Containers | |
if: always() | |
run: docker-compose -f "docker-compose-dev.yml" down --remove-orphans |