From 6c4349fd5ca70c03f32658190cb982ac6af6f37d Mon Sep 17 00:00:00 2001 From: Milan Nikolic Date: Wed, 22 May 2024 17:12:50 +0200 Subject: [PATCH] Test purego --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 12a6c17..e320161 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,6 +103,25 @@ jobs: run: go build -tags rgfw working-directory: raylib + test-purego: + strategy: + matrix: + go-version: [1.21.x] + os: [ubuntu-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Install Go + uses: actions/setup-go@v3 + with: + go-version: ${{ matrix.go-version }} + - name: Checkout code + uses: actions/checkout@v3 + - name: Build + run: go build + working-directory: raylib + env: + GOOS: windows + test-examples: strategy: matrix: