Skip to content

Update 20241230 - Actions Rework #14

Update 20241230 - Actions Rework

Update 20241230 - Actions Rework #14

Workflow file for this run

name: Fabric Testing
on: [pull_request, push]
jobs:
run:
strategy:
matrix:
version:
- {mc: 1.21.3, java: 22, loader: fabric}
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Prepare Testing
uses: ./.github/workflows/prep.yml
with:
java: ${{ matrix.version.java }}
os: ubuntu-latest
- name: Stage mod for test client
run: |
mkdir -p run/mods
cp build/libs/.jar run/mods
- name: Run MC test client
uses: headlesshq/[email protected]
with:
mc: ${{ matrix.minecraft_version }}
modloader: ${{ matrix.version.loader }}
regex: .*${{ matrix.version.loader }}.*
mc-runtime-test: ${{ matrix.version.loader }}
xvfb: false
java: ${{ matrix.version.java }}