Files
mcaselector-lite/.github/workflows/validate.yaml
Quinn d6409f5473 workflow fixes
- checkout@latest is not allowed, reverted back to checkout@v4
- set rust to use the stable release
2025-05-01 16:48:34 +02:00

26 lines
526 B
YAML

name: validate
on:
push:
branches:
- dev
- $default-branch
pull_request:
branches:
- dev
- $default-branch
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