Skip to content

Instantly share code, notes, and snippets.

@OverHash
Created December 20, 2019 08:08
Show Gist options
  • Save OverHash/27c4147264b84ada7457bdc4ff6e95d1 to your computer and use it in GitHub Desktop.
Save OverHash/27c4147264b84ada7457bdc4ff6e95d1 to your computer and use it in GitHub Desktop.
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