Skip to content

Update keyv package version to 0.2.0 #20

Update keyv package version to 0.2.0

Update keyv package version to 0.2.0 #20

Workflow file for this run

name: Continuous Integration
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Start Services
run: |
docker-compose up -d
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt, clippy
- uses: swatinem/rust-cache@v2.7.3
- name: Rust fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features
- name: Build release
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all --release --all-features
- name: Run Test
uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features