Skip to content

fix: update version #149

fix: update version

fix: update version #149

Workflow file for this run

name: Rust Testing
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
# Build application
- uses: actions/checkout@v6
- name: Build
run: cargo build --verbose
# Run cargo tests
- name: Run tests
run: cargo test --verbose