Fix outdated "upcoming" in faq.md
#58
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: Test | |
| on: | |
| push: | |
| branches-ignore: | |
| - gh-pages | |
| pull_request: | |
| jobs: | |
| book: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: hecrj/setup-rust-action@v2 | |
| - name: Install `mdbook` and `wasm-bindgen-cli` | |
| run: cargo install mdbook@^0.4 wasm-bindgen-cli | |
| - name: Install `mdbook-iced` | |
| run: cargo install --locked --git https://github.com/iced-rs/mdbook-iced.git | |
| - name: Add `wasm32-unknown-unknown` target to Rust toolchain | |
| run: rustup target add wasm32-unknown-unknown | |
| - name: Build book | |
| run: mdbook build | |
| - name: Test book | |
| run: mdbook test |