From dd2fcf21250bd924a0b27a778d54abb12822ffea Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl>
Date: Wed, 6 Mar 2024 12:57:42 +0100
Subject: [PATCH] fix CR moving

---
 .github/workflows/ci.yml | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 622c7169..938563e9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,16 +21,22 @@ jobs:
           pip install -U -e .[test,dev]
       - name: Test everything
         run: pytest -n 8 -vv --cov=satella
+      - name: List
+        run: ls .*
   upload-coverage:
-    runs-on: "ubuntu-20.04"
+    runs-on: "ubuntu-latest"
     needs: ["tests"]
     steps:
       - uses: actions/checkout@main
       - uses: actions/setup-python@main
         with:
           python-version: '3.8'
-      - run: coverage xml
-      - uses: caffco/code-climate-github-action@v1.0.0
+      - run: |
+          pip install coverage
+          coverage xml
+      - uses: caffco/code-climate-github-action@main
+        env:
+          CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
   build-project:
     runs-on: ubuntu-20.04
     steps:
@@ -79,4 +85,6 @@ jobs:
         run: |
           echo $PYPIRC_PASSWORD_DATA > ~/.pypirc
           twine upload dist/*
+        env:
+          PYPIRC_PASSWORD_DATA: ${{ secrets.PYPIRC_PASSWORD_DATA }}
 
-- 
GitLab