Skip to content

chore: remove luarocks dir #42

chore: remove luarocks dir

chore: remove luarocks dir #42

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
inputs:
linux:
description: "Linux"
type: boolean
default: false
macos:
description: "macOS"
type: boolean
default: false
windows:
description: "Windows"
type: boolean
default: false
stylua:
description: "StyLua"
type: boolean
default: false
luacheck:
description: "Luacheck"
type: boolean
default: false
markdownlint:
description: "Markdownlint"
type: boolean
default: false
tests:
description: "Tests"
type: boolean
default: false
docs:
description: "Docs"
type: boolean
default: false
release-please:
description: "Release Please"
type: boolean
default: false
luarocks-upload:
description: "Upload to LuaRocks"
type: boolean
default: false
jobs:
ci:
uses: BlueLua/.github/.github/workflows/ci.yml@main
secrets: inherit
# prettier-ignore
with:
package: "bluelua-${{ github.event.repository.name }}"

Check failure on line 56 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 56, Col: 16): Invalid input, package is not defined in the referenced workflow. .github/workflows/ci.yml (Line: 77, Col: 24): Invalid input, luarocks-upload is not defined in the referenced workflow.
run: |
echo 'KERNEL=="event*", SUBSYSTEM=="input", MODE="0666"' | sudo tee /etc/udev/rules.d/99-evdev-test.rules
sudo udevadm control --reload-rules
sudo modprobe uinput || true
sudo udevadm trigger --subsystem-match=input || true
test -e /dev/uinput
sudo chmod 666 /dev/uinput
linux: ${{ inputs.linux || github.event_name != 'workflow_dispatch' }}
macos: ${{ inputs.macos || github.event_name != 'workflow_dispatch' }}
windows: ${{ inputs.windows || github.event_name != 'workflow_dispatch' }}
stylua: ${{ inputs.stylua || false }}
luacheck: ${{ inputs.luacheck || false }}
markdownlint: ${{ inputs.markdownlint || false }}
tests: ${{ inputs.tests || false }}
docs: ${{ inputs.docs || false }}
release-please: ${{ inputs.release-please || false }}
luarocks-upload: ${{ inputs.luarocks-upload || false }}