Skip to content

Commit

Permalink
Merge pull request #305 from bakpakin/ci-test-lua5.4
Browse files Browse the repository at this point in the history
add Lua 5.4 tests to CI
  • Loading branch information
technomancy authored Jul 10, 2020
2 parents 4e620ac + 2b2f259 commit 9246027
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ orbs:
jobs:
build:
docker:
- image: debian:buster-slim
- image: debian:testing
steps:
- checkout
- run: apt-get update -qq && apt-get install -qq cloc make lua-check luajit lua5.1 lua5.2 lua5.3
- run:
command: |
apt-get update -qq && apt-get install -qq cloc make lua-check \
luajit lua5.1 lua5.2 lua5.3 lua5.4
- run: make ci
windows:
executor: windows/default
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ testall: fennel
@printf 'Testing lua 5.1:\n' ; lua5.1 test/init.lua
@printf "\nTesting lua 5.2:\n"; lua5.2 test/init.lua
@printf "\nTesting lua 5.3:\n"; lua5.3 test/init.lua
@printf "\nTesting lua 5.4:\n"; lua5.4 test/init.lua
@printf "\nTesting luajit:\n" ; luajit test/init.lua

luacheck:
Expand Down

0 comments on commit 9246027

Please sign in to comment.