From 424e94908468fba7d93e5a836ce472edbab23799 Mon Sep 17 00:00:00 2001 From: francisco souza Date: Thu, 13 Jan 2022 00:02:13 -0500 Subject: [PATCH] github/workflows/main: change the order of things a bit Run the examples earlier: if linting is fine, we try to build it and run the examples. --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 950b8e2bc0..193285bb8c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -106,7 +106,6 @@ jobs: name: test-examples (${{ matrix.lang }}) runs-on: ubuntu-latest needs: - - test - lint - staticcheck steps: @@ -143,6 +142,8 @@ jobs: unblock-pr: name: unblock-pr runs-on: ubuntu-latest - needs: test-examples + needs: + - test-examples + - test steps: - run: "true"