From 16aa697ac75fb574700abf94822e96ba46a2acca Mon Sep 17 00:00:00 2001 From: SMJS <38814077+SMJSGaming@users.noreply.github.com> Date: Mon, 2 Oct 2023 00:11:31 +0200 Subject: [PATCH 1/2] Added a filter to only test offsets on bindings --- .github/workflows/test-offsets.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-offsets.yml b/.github/workflows/test-offsets.yml index 66cfcf47..dde5de3c 100644 --- a/.github/workflows/test-offsets.yml +++ b/.github/workflows/test-offsets.yml @@ -3,6 +3,8 @@ name: Test Offsets on: workflow_dispatch: push: + paths: + - 'bindings/**' # only when adjusting bindings branches: - '**' # every branch - '!no-build-**' # unless marked as no-build From 44fa9c6f69d5663dc9e9c770dfdb17033f0dd3a6 Mon Sep 17 00:00:00 2001 From: SMJS <38814077+SMJSGaming@users.noreply.github.com> Date: Mon, 2 Oct 2023 00:15:14 +0200 Subject: [PATCH 2/2] Added an additional path to cover in offset tests --- .github/workflows/test-offsets.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-offsets.yml b/.github/workflows/test-offsets.yml index dde5de3c..23403f67 100644 --- a/.github/workflows/test-offsets.yml +++ b/.github/workflows/test-offsets.yml @@ -5,6 +5,7 @@ on: push: paths: - 'bindings/**' # only when adjusting bindings + - 'loader/test/members/**' branches: - '**' # every branch - '!no-build-**' # unless marked as no-build