mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 11:25:45 +01:00
24 lines
480 B
YAML
24 lines
480 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/crust_tools: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
|