mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 06:15:47 +01:00
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.
24 lines
457 B
YAML
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}}
|