2023-10-04 08:30:25 +02:00
|
|
|
name: StyLua
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
StyLuacheck:
|
2023-10-04 08:46:28 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-10-04 08:30:25 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2023-10-04 08:43:16 +02:00
|
|
|
|
|
|
|
- name: Setup StyLua
|
|
|
|
run: |
|
|
|
|
apt update && apt install cargo -y
|
|
|
|
cargo install stylua
|
|
|
|
|
2023-10-04 08:30:25 +02:00
|
|
|
- name: StyLua check
|
2023-10-04 08:43:16 +02:00
|
|
|
run: |
|
|
|
|
stulua .
|