fix streams #24
Workflow file for this run
This file contains 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
# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md | |
on: [pull_request] | |
name: check frontend | |
env: | |
ACTIX_PORT: 8080 | |
jobs: | |
test: | |
name: cargo test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/[email protected] | |
with: | |
components: clippy, rustfmt | |
- run: RUSTFLAGS=--cfg=web_sys_unstable_apis cargo clippy -- --deny warnings | |
- run: RUSTFLAGS=--cfg=web_sys_unstable_apis cargo fmt --check | |
- run: RUSTFLAGS=--cfg=web_sys_unstable_apis cargo test |