Skip to content

ad ci script and bump crate version #1

ad ci script and bump crate version

ad ci script and bump crate version #1

Workflow file for this run

# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
on: [pull_request]
name: check frontend
env:
ACTIX_PORT: 8080
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.73
with:
components: clippy, rustfmt
- run: cargo fmt --check
- run: cargo build
- run: cd examples/recaptcha-basic
- run: cargo fmt --check
- run: cargo build