Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Merge 125c563 into deaa800
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Jan 13, 2020
2 parents deaa800 + 125c563 commit 3f5ce29
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
submodules: true

- uses: leafo/gh-actions-lua@v5
with:
luaVersion: "5.1"

- uses: leafo/gh-actions-luarocks@v2

- name: Install dependencies
run: |
luarocks install luafilesystem
luarocks install busted
luarocks install luacov
luarocks install luacov-coveralls --server=http://rocks.moonscript.org/dev
luarocks install luacheck
- name: Test
run: |
lua -lluacov bin/spec.lua
luacheck src benchmarks examples
- name: Report to Coveralls
run: luacov-coveralls

0 comments on commit 3f5ce29

Please sign in to comment.