1
0
mirror of https://github.com/jiriks74/presence.nvim synced 2024-11-23 12:27:50 +01:00

fix(ci/cd): Use cache, Luacheck not working on Gitea (#47)
All checks were successful
Luacheck / Luacheck (push) Successful in 11s
StyLua / StyLuacheck (push) Successful in 16s

* feat(ci/cd): Make workflows compatible with medium act images
for reference: https://nektosact.com/usage/runners.html

* fix(ci/cd): use sudo to install cargo

* fix(ci/cd): Luacheck failing install on Gitea
Install luacheck using apt and cache the install

* feat(ci/cd): Cache apt install cargo

* fix(ci/cd): remove unnecessary comments

* [69] Make workflow compatible with medium act images
https://openproject.stefka.eu/work_packages/69
This commit is contained in:
Jiří Štefka 2024-04-17 18:38:05 +02:00 committed by GitHub
parent 655aa1d9c7
commit d32c67370f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 2 deletions

@ -4,7 +4,13 @@ jobs:
Luacheck:
runs-on: ubuntu-latest
steps:
- name: Update repositories
run: sudo apt update
- name: Install luarocks
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: lua-check
- name: Checkout
uses: actions/checkout@v3
- name: Luacheck linter
uses: lunarmodules/luacheck@v1
run: luacheck --config .luacheckrc .

@ -4,8 +4,12 @@ jobs:
StyLuacheck:
runs-on: ubuntu-latest
steps:
- name: Update repositories
run: sudo apt update
- name: Install cargo
run: sudo apt update && sudo apt install -y cargo
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: cargo
- name: Install StyLua from crates.io
uses: baptiste0928/cargo-install@v3