Skip to content

Icon: button -> botton typo correction (#4) #12

Icon: button -> botton typo correction (#4)

Icon: button -> botton typo correction (#4) #12

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
timeout-minutes: 10
strategy:
matrix:
toolchain: [stable, nightly]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- run: cargo build --verbose
- run: cargo test --verbose
- run: cargo clippy --all-targets --all-features -- --deny warnings