Skip to content

Add daita as a custom config name #5277

Add daita as a custom config name

Add daita as a custom config name #5277

Workflow file for this run

---
name: Rust - Check formatting
on:
pull_request:
paths:
- .github/workflows/rustfmt.yml
- rustfmt.toml
- '**/*.rs'
workflow_dispatch:
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Checkout wireguard-go submodule
run: git submodule update --init --depth=1 wireguard-go-rs/libwg/wireguard-go
- name: Install nightly Rust
uses: actions-rs/toolchain@v1.0.6
with:
toolchain: stable
components: rustfmt
default: true
- name: Check formatting
run: |-
rustfmt --version
cargo fmt -- --check