Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Bump libflate from 0.1.22 to 0.1.27 #15

Bump libflate from 0.1.22 to 0.1.27

Bump libflate from 0.1.22 to 0.1.27 #15

Workflow file for this run

---
name: cfntsCI
on:
push:
branches:
- master
pull_request:
jobs:
Testing:
runs-on: ubuntu-latest
steps:
- name: Checking out
uses: actions/checkout@v3
- name: Setting up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy, rustfmt
override: true
- name: Rust cache
uses: Swatinem/rust-cache@v1
- name: Linting
run: cargo clippy --all-targets -- -D warnings
- name: Format
run: cargo fmt --all --check
- name: Building
run: cargo build --release
- name: Testing
run: cargo test -- --nocapture
E2E:
runs-on: ubuntu-latest
steps:
- name: Checking out
uses: actions/checkout@v3
- name: Run integration tests
uses: isbang/[email protected]
with:
compose-file: "./docker-compose.yaml"
up-flags: "--build --abort-on-container-exit --exit-code-from client"