mirror of
https://github.com/minetest/minetest_game.git
synced 2025-06-17 16:20:20 +02:00
20 lines
462 B
YAML
20 lines
462 B
YAML
name: Test
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
strategy:
|
|
matrix:
|
|
cfg:
|
|
- { image: 'ghcr.io/minetest/minetest:5.9.0' }
|
|
- { image: 'ghcr.io/minetest/minetest:5.10.0' }
|
|
- { image: 'ghcr.io/luanti-org/luanti:master' } # latest git
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: ./utils/test/run.sh
|
|
env:
|
|
DOCKER_IMAGE: "${{ matrix.cfg.image }}"
|