mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-05 12:03:00 +02:00
[#68] StyLUA check is not working for PRs from forks https://openproject.stefka.eu/work_packages/68
16 lines
372 B
YAML
16 lines
372 B
YAML
name: StyLua
|
|
on: [push, pull_request]
|
|
jobs:
|
|
StyLuacheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install cargo-hack from crates.io
|
|
uses: baptiste0928/cargo-install@v3
|
|
with:
|
|
crate: stylua
|
|
version: 0.20.0
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Check code formatting
|
|
run: stylua -c .
|