Add bucket fill tool #154
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
on: | |
pull_request: | |
push: | |
branches: [master] | |
name: Continuous integration | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- beta | |
- nightly | |
- 1.65.0 # MSRV | |
target: | |
- x86_64-unknown-linux-gnu | |
- wasm32-unknown-unknown | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout source | |
- uses: actions-rs/toolchain@v1 | |
name: Install toolchain | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
target: ${{ matrix.target }} | |
override: true | |
components: rustfmt, clippy | |
- uses: actions-rs/cargo@v1 | |
name: Build | |
with: | |
command: build | |
args: --workspace ${{ matrix.target == 'wasm32-unknown-unknown' && '--exclude runty8-editor' || '' }} | |
- uses: actions-rs/cargo@v1 | |
name: Test | |
with: | |
command: test | |
args: --workspace ${{ matrix.target == 'wasm32-unknown-unknown' && '--exclude runty8-editor' || '' }} | |
- uses: actions-rs/cargo@v1 | |
name: Format | |
with: | |
command: fmt | |
args: --all -- --check | |
- uses: actions-rs/cargo@v1 | |
name: Clippy | |
with: | |
command: clippy | |
args: --workspace ${{ matrix.target == 'wasm32-unknown-unknown' && '--exclude runty8-editor' || '' }} -- -D warnings -A unknown-lints |