Skip to content

chore: bump version 0.2.1 -> 0.3.0 #76

chore: bump version 0.2.1 -> 0.3.0

chore: bump version 0.2.1 -> 0.3.0 #76

Workflow file for this run

name: Rust
on:
pull_request:
push:
branches:
- 'main'
env:
CARGO_TERM_COLOR: always
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup component add clippy
- uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
github_token: ${{ secrets.GH_TOKEN }}
level: info
clippy_flags: -- -Dwarnings
test:
runs-on: ubuntu-latest
steps:
- name: setup minikube
id: minikube
uses: medyagh/setup-minikube@latest
with:
start: false
- uses: actions/checkout@v4
- name: setup test cluster
run: make prepare_tests
- name: run tests
run: make test
- uses: taiki-e/install-action@cargo-llvm-cov
- name: Collect Coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Coveralls
uses: coverallsapp/github-action@v2