Files
mcaselector-lite/.github/workflows/validate.yaml
Quinn cf908a2f65 add -j argument to speed up compillation on the cloud
-j tells make to not set a limit to the amount of jobs it can use
parralel to one another.
We just gotta make sure the makefile supports the paralelsation
correctly, currently it should be.
2025-06-02 12:41:00 +02:00

24 lines
488 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}} -j
# TODO: add linting checking here