mirror of
https://github.com/Uberi/Minetest-WorldEdit.git
synced 2024-11-14 22:50:18 +01:00
27 lines
647 B
YAML
27 lines
647 B
YAML
name: "Test"
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
name: "Unit Tests ${{ matrix.cfg.image }}"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
strategy:
|
|
matrix:
|
|
cfg:
|
|
- { image: 'registry.gitlab.com/minetest/minetest/server:5.5.1', mtg: false }
|
|
- { image: '', mtg: true } # latest mater
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
repository: 'minetest/minetest_game'
|
|
path: minetest_game
|
|
if: ${{ matrix.cfg.mtg }}
|
|
|
|
- name: Run tests
|
|
run: ./.util/run_tests.sh --docker
|
|
env:
|
|
DOCKER_IMAGE: "${{ matrix.cfg.image }}"
|