From adb4babbfe52b99f28faa94d94ec69fdc65d62ce Mon Sep 17 00:00:00 2001 From: BuckarooBanzay Date: Tue, 27 Oct 2020 08:48:58 +0100 Subject: [PATCH] switch to github ci --- .github/workflows/luacheck.yml | 17 +++++++++++++++++ .travis.yml | 11 ----------- README.md | 8 +++++--- 3 files changed, 22 insertions(+), 14 deletions(-) create mode 100644 .github/workflows/luacheck.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml new file mode 100644 index 00000000..d00f53a1 --- /dev/null +++ b/.github/workflows/luacheck.yml @@ -0,0 +1,17 @@ +name: luacheck + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: apt + run: sudo apt-get install -y luarocks + - name: luacheck install + run: luarocks install --local luacheck + - name: luacheck run + run: $HOME/.luarocks/bin/luacheck ./ diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a367215f..00000000 --- a/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -language: generic -addons: - apt: - packages: - - luarocks -before_install: - - luarocks install --local luacheck -script: -- $HOME/.luarocks/bin/luacheck ./mods -notifications: - email: false diff --git a/README.md b/README.md index a88d83c7..74af8013 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,12 @@ # Minetest Game +![](https://github.com/mt-mods/jumpdrive/workflows/luacheck/badge.svg) + The default game bundled in the Minetest engine. -For further information, check +For further information, check [this forum topic](https://forum.minetest.net/viewtopic.php?f=15&t=9724). -Also see the [Minetest Wiki](https://wiki.minetest.net/Subgames/Minetest_Game) +Also see the [Minetest Wiki](https://wiki.minetest.net/Subgames/Minetest_Game) for more information. ## Installation @@ -27,7 +29,7 @@ master HEAD of the Minetest engine. Additionally, when the Minetest engine is tagged to be a certain version (e.g. 0.4.10), Minetest Game is tagged with the version too. -When stable releases are made, Minetest Game and the Minetest engine is packaged +When stable releases are made, Minetest Game and the Minetest engine is packaged and made available at [www.minetest.net](https://www.minetest.net/downloads/). ## Licensing