This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit a0d03a5dd4ad2ef7fe5befcb26c4df9b2b1d3b6d
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Tue Aug 1 13:00:27 2023 +0200

    Use consistent workflow ordering.
---
 .github/workflows/main.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 2f82bbe82..2576b5f5d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -13,15 +13,15 @@ on:
 permissions:
   contents: read  # for actions/checkout to fetch code
 
+concurrency:
+  group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
+  cancel-in-progress: true
+
 env:
   # Needed if we want colors in pytest output without tty and script -e -c 
wrapper
   PY_COLORS: "1"
   FORCE_COLOR: "1"
 
-concurrency:
-  group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
-  cancel-in-progress: true
-
 jobs:
   unit_tests:
     name: Unit Tests (Python ${{ matrix.python_version }})

Reply via email to