Skip to content

✨ Now we can use option type's declaration by ?:. #54

✨ Now we can use option type's declaration by ?:.

✨ Now we can use option type's declaration by ?:. #54

Workflow file for this run

name: Format
on:
pull_request:
paths:
- '.github/workflows/clippy.yml'
- 'yuuka/**/*'
- 'yuuka-macros/**/*'
- 'Cargo.toml'
- 'Cargo.lock'
push:
branches: [master]
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- name: Run fmt
run: cargo +nightly fmt --all -- --check --unstable-features