Skip to content

Better error handling #2

Better error handling

Better error handling #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [assigned, opened, synchronize, reopened]
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update nightly && rustup default nightly
- run: cargo build --verbose
- run: cargo test --verbose