8000 Add is_changed parameter to View::poll_ready · actuate-rs/actuate@7db505d · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add is_changed parameter to View::poll_ready #57

Add is_changed parameter to View::poll_ready

Add is_changed parameter to View::poll_ready #57

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Build core
run: cargo build --no-default-features --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- name: Test with Miri
run: cargo miri test
0