From 5e81ddc3b2514e3445f5f4b2079e338e2cc63183 Mon Sep 17 00:00:00 2001 From: AlexHaxe Date: Tue, 7 Jan 2025 01:24:25 +0100 Subject: [PATCH] fixed github action --- .github/workflows/instrument.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/instrument.yml b/.github/workflows/instrument.yml index 2da9241..ecaa5ec 100644 --- a/.github/workflows/instrument.yml +++ b/.github/workflows/instrument.yml @@ -14,7 +14,7 @@ jobs: build: strategy: matrix: - haxe-version: ['4.2.5', '4.3.4', 'nightly'] + haxe-version: ['4.3.6', 'nightly'] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -47,5 +47,5 @@ jobs: - name: Run tests run: npx haxe test.hxml - name: Upload results to codecov - if: success() && matrix.platform == 'ubuntu-latest' && matrix.haxe-version == '4.3.4' + if: success() && matrix.platform == 'ubuntu-latest' && matrix.haxe-version == '4.3.6' run: bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"