Created
December 20, 2019 08:08
-
-
Save OverHash/27c4147264b84ada7457bdc4ff6e95d1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: Run CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Install lua | |
uses: leafo/gh-actions-lua@v5 | |
- name: Install Luarocks | |
uses: leafo/gh-actions-luarocks@v2 | |
- name: Install Luarocks Packages | |
run: | | |
luarocks install luafilesystem | |
luarocks install dkjson | |
- name: Run Tests | |
run: | | |
lua spec.lua |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment