Skip to content

ci(test): add ci tests #2

ci(test): add ci tests

ci(test): add ci tests #2

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --all --all-features --all-targets --verbose