Restored padding within modal body #1
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
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_call: | |
# But don't trigger on tags, as they are covered by the "release.yaml" workflow | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
# MSRV for bumpalo | |
- "1.73.0" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust ${{ matrix.toolchain }} | |
run: | | |
rustup toolchain install ${{ matrix.toolchain }} --component rustfmt,clippy --target wasm32-unknown-unknown | |
rustup default ${{ matrix.toolchain }} | |
- name: Check rustfmt | |
run: | |
cargo fmt --all -- --check | |
- name: Check | |
run: | | |
cargo check --release | |
- name: Test | |
run: | | |
cargo test --release | |
- name: Install binstall | |
run: | | |
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash | |
- name: Install cargo-all-features | |
run: | | |
cargo binstall -y cargo-all-features | |
- name: Check all features | |
run: | | |
cargo check-all-features --target wasm32-unknown-unknown |