mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 06:15:47 +01:00
22 lines
463 B
YAML
22 lines
463 B
YAML
name: tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
jobs:
|
|
execute-tests:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
|
strategy:
|
|
matrix:
|
|
arch:
|
|
- linux-x86_64
|
|
# WARN: not testing win-x86_64... Probably a good idea to do that
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: make run-test ARCH=${{matrix.arch}} -j
|