Validate SuperStrict #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate SuperStrict | |
on: | |
workflow_dispatch: | |
jobs: | |
bash-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run Bash script | |
run: | | |
sudo apt -y install lua5.3 | |
sudo apt -y install lua-filesystem | |
sudo apt update | |
lua "./.github/workflows/scan.lua" | |
if test -f "./test.lua"; then | |
lua "./test.lua" | |
fi | |