Skip to content

feat: allow customizing whether UI should update while blocking (#95) #78

feat: allow customizing whether UI should update while blocking (#95)

feat: allow customizing whether UI should update while blocking (#95) #78

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: "Build, lint and test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Lint with clippy
run: cargo clippy
- name: Run tests
run: cargo test --verbose