mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
GitHub Actions: Add Checkout action
This commit is contained in:
parent
04b5723db2
commit
37f25d40a1
1 changed files with 8 additions and 0 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
@ -4,6 +4,10 @@ jobs:
|
|||
Syntax-Check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Checkout the git repo
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install Dependencies
|
||||
run: sudo apt-get install lua5.1
|
||||
|
||||
|
@ -20,6 +24,10 @@ jobs:
|
|||
Busted:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Checkout the git repo
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install Dependencies
|
||||
run: sudo apt-get install lua5.1 luarocks
|
||||
|
||||
|
|
Loading…
Reference in a new issue