Skip to content

chore: bump version to 0.4 #26

chore: bump version to 0.4

chore: bump version to 0.4 #26

Workflow file for this run

on:
push:
pull_request:
name: Continuous Integration
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- run: cargo test --all-features
msrv:
name: "Build / MSRV"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
- run: cargo +1.60.0 build --all-features --manifest-path tests/smoke_test/Cargo.toml