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.
This commit is contained in:
Quinn
2025-04-07 23:40:10 +02:00
committed by Quinn
parent 417c110187
commit f6458ddc46

View File

@@ -9,7 +9,15 @@ on:
- dev - dev
- $default-branch - $default-branch
jobs: jobs:
tmp: compile-and-lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: ghcr.io/thepigeongenerator/crust_tools:latest
strategy:
matrix:
arch:
- linux-x86_64
- win-x86_64
steps: steps:
- run: echo Hello, World - uses: actions/checkout@latest
- run: make compile ARCH=${{matrix.arch}}