mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
switch to github ci
This commit is contained in:
parent
720d4c8e3f
commit
adb4babbfe
3 changed files with 22 additions and 14 deletions
17
.github/workflows/luacheck.yml
vendored
Normal file
17
.github/workflows/luacheck.yml
vendored
Normal file
|
@ -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 ./
|
11
.travis.yml
11
.travis.yml
|
@ -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
|
|
|
@ -1,10 +1,12 @@
|
||||||
# Minetest Game
|
# Minetest Game
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
The default game bundled in the Minetest engine.
|
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).
|
[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.
|
for more information.
|
||||||
|
|
||||||
## Installation
|
## 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.
|
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.
|
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/).
|
and made available at [www.minetest.net](https://www.minetest.net/downloads/).
|
||||||
|
|
||||||
## Licensing
|
## Licensing
|
||||||
|
|
Loading…
Add table
Reference in a new issue