Skip to content

Don't expect a response to a HEAD request #460

Don't expect a response to a HEAD request

Don't expect a response to a HEAD request #460

Workflow file for this run

name: Rustfmt
on:
pull_request:
branches: [ "*" ]
paths:
- "crates/**"
jobs:
check-rust-format:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./crates
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Check format
run: cargo fmt -- --check
- name: Check format
run: cargo fmt -- --check
working-directory: ./crates/y-sweet-worker