fix: values not updated after home assistant is restarted #26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Update local toolchain | |
| run: | | |
| rustup update | |
| rustup install nightly | |
| rustup default nightly | |
| rustup component add clippy rustfmt | |
| - name: Toolchain info | |
| run: | | |
| cargo --version --verbose | |
| rustc --version | |
| cargo clippy --version | |
| - name: Lint | |
| run: | | |
| cargo fmt -- --check | |
| cargo clippy -- -D warnings | |
| - name: Test | |
| run: | | |
| cargo check | |
| cargo test --all | |
| - name: Build | |
| run: | | |
| cargo build --release |