Skip to content

feat: Explicitly handle * in allowed_origins as "allow all" #25

feat: Explicitly handle * in allowed_origins as "allow all"

feat: Explicitly handle * in allowed_origins as "allow all" #25

Workflow file for this run

name: Format
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
jobs:
format:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install rustfmt with nightly toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --manifest-path=Cargo.toml --all -- --check