Files
mcaselector-lite/.github/workflows/validate.yaml
Quinn f6458ddc46 implement validate
validate hasn't fully been finished yet, linting still needs to be added
and we'll add unit tests as well, but that's when I've actually written
the tests.
2025-05-01 16:48:32 +02:00

24 lines
457 B
YAML

name: validate
on:
push:
branches:
- dev
- $default-branch
pull_request:
branches:
- dev
- $default-branch
jobs:
compile-and-lint:
runs-on: ubuntu-latest
container:
image: ghcr.io/thepigeongenerator/crust_tools:latest
strategy:
matrix:
arch:
- linux-x86_64
- win-x86_64
steps:
- uses: actions/checkout@latest
- run: make compile ARCH=${{matrix.arch}}