Skip to content

Propogate RuntimeError instead of panicking #30

Propogate RuntimeError instead of panicking

Propogate RuntimeError instead of panicking #30

Workflow file for this run

name: CI
# This workflow run tests and build for each push
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Lint
run: cargo clippy --all --all-targets -- -D warnings
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Test
run: cargo test --all
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --all