Skip to content

feat: ♻️ start converting functions to output Result<T, E> #7

feat: ♻️ start converting functions to output Result<T, E>

feat: ♻️ start converting functions to output Result<T, E> #7

Workflow file for this run

name: Cargo Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose