Update Rust crate leptos_actix to v0.7.2 #41
Workflow file for this run
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: CI | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| env: | |
| RUSTFLAGS: '-Dwarnings' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Rust toolchain | |
| run: rustup toolchain install stable --no-self-update --profile default --target wasm32-unknown-unknown | |
| - name: Set up Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| save-if: ${{ github.ref == 'refs/heads/main' }} | |
| - name: Check formatting | |
| run: cargo fmt --all --check | |
| - name: Lint | |
| run: cargo clippy --all-features | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| services: | |
| mysql: | |
| image: mysql | |
| ports: | |
| - 13306:3306 | |
| env: | |
| MYSQL_ROOT_PASSWORD: shield | |
| MYSQL_USER: shield | |
| MYSQL_PASSWORD: shield | |
| MYSQL_DATABASE: shield | |
| postgresql: | |
| image: postgres | |
| ports: | |
| - 15432:5432 | |
| env: | |
| POSTGRES_USER: shield | |
| POSTGRES_PASSWORD: shield | |
| POSTGRES_DB: shield | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Rust toolchain | |
| run: rustup toolchain install stable --no-self-update --profile default --target wasm32-unknown-unknown | |
| - name: Set up Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| save-if: ${{ github.ref == 'refs/heads/main' }} | |
| - name: Install Cargo Binary Install | |
| uses: cargo-bins/cargo-binstall@main | |
| - name: Install crates | |
| run: cargo binstall --force -y sea-orm-cli | |
| - name: Test | |
| run: cargo test --all-features |