Skip to content

chore: update the Dockerfiles to build more cleanly #499

chore: update the Dockerfiles to build more cleanly

chore: update the Dockerfiles to build more cleanly #499

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install minimum stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: stable
override: true
- name: Format
run: cargo fmt -- --check
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install minimum stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: stable
override: true
- name: Build and lint for S3
run: cargo clippy --features s3
- name: Build and lint for Azure
run: cargo clippy --features azure
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install minimum stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: stable
override: true
- name: Teststack setup
run: docker-compose up setup
- name: Run s3 feature tests
run: cargo test --features s3
- name: Run azure feature tests
run: cargo test --features azure