Add devcontainer config for GitHub Codespaces development #30
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: PR Validation | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install lua 5.4 and Busted | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y lua5.4 luarocks | |
sudo luarocks install busted | |
- name: Run tests | |
run: | | |
busted |