Files
mcaselector-lite/.github/workflows/validate.yaml
Quinn c57ff88f70 use new docker image
not using rust anymore, and really need to be able to use the package we
need
2025-05-01 16:48:46 +02:00

24 lines
485 B
YAML

name: validate
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
# TODO: add unit test job here
compile-and-lint:
runs-on: ubuntu-latest
container:
image: ghcr.io/thepigeongenerator/mcaselector-lite:latest
strategy:
matrix:
arch:
- linux-x86_64
- win-x86_64
steps:
- uses: actions/checkout@v4
- run: make compile ARCH=${{matrix.arch}}
# TODO: add linting checking here