Skip to content

chore: Update project version to 0.1.1 in Cargo.toml #4

chore: Update project version to 0.1.1 in Cargo.toml

chore: Update project version to 0.1.1 in Cargo.toml #4

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose