From f6458ddc46b682548a9280274a6c15836d076e12 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 7 Apr 2025 23:40:10 +0200 Subject: [PATCH] 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. --- .github/workflows/validate.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 8a48051..772ff98 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -9,7 +9,15 @@ on: - dev - $default-branch jobs: - tmp: + 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: - - run: echo Hello, World + - uses: actions/checkout@latest + - run: make compile ARCH=${{matrix.arch}}