Some checks failed
Format code / Format the kernel (push) Failing after 1m56s
20 lines
No EOL
484 B
YAML
20 lines
No EOL
484 B
YAML
name: Format code
|
|
on: [push]
|
|
|
|
jobs:
|
|
format-kernel:
|
|
name: Format the kernel
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: msrd0/rust-toolchain@nightly
|
|
- run: |
|
|
cd kernel
|
|
./format
|
|
- name: Commit format
|
|
run: |
|
|
git config --global user.name 'Formatter'
|
|
git config --global user.email 'formatter@noreply.git.verygay.fyi'
|
|
git commit -am "Automated format"
|
|
git push
|
|
|