From fb21aaa93e183956a2dec2bd2ecfa72f7d3538ae Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 14:28:48 +0100 Subject: [PATCH 01/18] test --- .github/workflows/test_unitaire_workflow.yml | 48 ++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/test_unitaire_workflow.yml diff --git a/.github/workflows/test_unitaire_workflow.yml b/.github/workflows/test_unitaire_workflow.yml new file mode 100644 index 00000000..f0749908 --- /dev/null +++ b/.github/workflows/test_unitaire_workflow.yml @@ -0,0 +1,48 @@ +name: Tests unitaire de l'app +on: push +env: + APP_VERSION: 1.0.0 +jobs: + Tests-app: + runs-on: ubuntu-latest + steps: + - name: Récuperation du repository + uses: actions/checkout@v3 + - name: Installation de nodeJS + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - name: Info sur la version testé + run: echo ${{ matrix.node-version }} + - name: Installation des dépendances + run: npm install + - name: Execution des tests unitaire + run: npm test + - name: Execution du code coverage + run: npm run cover + - name: Récupération du rapport + uses: actions/upload-artifact@v3 + with: + name: reports + path: ./reports/** + build-app: + needs: Tests-app + runs-on: ubuntu-latest + steps: + - name: Récupération du repo + uses: actions/checkout@v3 + - name: Installation de QEMU + uses: docker/sutup-qemu-action@v1 + - name: Installation de docker BuildX + uses: docker/sutup-buildx-action@ + - name: Login au docker hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME}} + password: ${{ secrets.DOCKER_PASSWORD}} + - name: Build & push docker + uses: docker/build-puch-action@v2 + with: + context: . + push: true + tags: ${{ secrets.DOCKER_USERNAME}}/weather:${{ env.APP_VERSION }} \ No newline at end of file From c36d0bc34176e75bf545fce1202c772f878fb0aa Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:03:42 +0100 Subject: [PATCH 02/18] test --- .github/workflows/test_unitaire_workflow.yml | 51 +++++--------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/.github/workflows/test_unitaire_workflow.yml b/.github/workflows/test_unitaire_workflow.yml index f0749908..13d8a142 100644 --- a/.github/workflows/test_unitaire_workflow.yml +++ b/.github/workflows/test_unitaire_workflow.yml @@ -1,48 +1,21 @@ -name: Tests unitaire de l'app +name: Tests unitaire + on: push -env: - APP_VERSION: 1.0.0 + jobs: - Tests-app: + test: runs-on: ubuntu-latest - steps: + steps: - name: Récuperation du repository - uses: actions/checkout@v3 - - name: Installation de nodeJS - uses: actions/setup-node@v2 + uses: actions/checkout@v1 + - name: Installation de python + uses: actions/setup-python with: - node-version: ${{ matrix.node-version }} - - name: Info sur la version testé - run: echo ${{ matrix.node-version }} - - name: Installation des dépendances - run: npm install - - name: Execution des tests unitaire - run: npm test - - name: Execution du code coverage - run: npm run cover + python-version: '3.x' + - run: python my_script.py + - name: Récupération du rapport uses: actions/upload-artifact@v3 with: name: reports - path: ./reports/** - build-app: - needs: Tests-app - runs-on: ubuntu-latest - steps: - - name: Récupération du repo - uses: actions/checkout@v3 - - name: Installation de QEMU - uses: docker/sutup-qemu-action@v1 - - name: Installation de docker BuildX - uses: docker/sutup-buildx-action@ - - name: Login au docker hub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKER_USERNAME}} - password: ${{ secrets.DOCKER_PASSWORD}} - - name: Build & push docker - uses: docker/build-puch-action@v2 - with: - context: . - push: true - tags: ${{ secrets.DOCKER_USERNAME}}/weather:${{ env.APP_VERSION }} \ No newline at end of file + path: ./reports/** \ No newline at end of file From 83237e2e1c5e4daa8922eedcda39a4315a455059 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:04:57 +0100 Subject: [PATCH 03/18] test1 --- .github/workflows/pull_request_closed.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/workflows/pull_request_closed.yml diff --git a/.github/workflows/pull_request_closed.yml b/.github/workflows/pull_request_closed.yml new file mode 100644 index 00000000..e69de29b From 3963d4413203e58fc9cb5f03191882d41aa90dfe Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:09:55 +0100 Subject: [PATCH 04/18] test3 --- .github/workflows/test_unitaire_workflow.yml | 30 +++++++++++--------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test_unitaire_workflow.yml b/.github/workflows/test_unitaire_workflow.yml index 13d8a142..414e759c 100644 --- a/.github/workflows/test_unitaire_workflow.yml +++ b/.github/workflows/test_unitaire_workflow.yml @@ -6,16 +6,20 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Récuperation du repository - uses: actions/checkout@v1 - - name: Installation de python - uses: actions/setup-python - with: - python-version: '3.x' - - run: python my_script.py - - - name: Récupération du rapport - uses: actions/upload-artifact@v3 - with: - name: reports - path: ./reports/** \ No newline at end of file + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax + architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified + - run: python my_script.py + - name: Installation des dépendances + run: npm install + - name: Execution des tests unitaire + run: npm test + - name: Execution du code coverage + run: npm run cover + - name: Récupération du rapport + uses: actions/upload-artifact@v3 + with: + name: reports + path: ./reports/** \ No newline at end of file From a1bdd64f5e1d325f2c74ec6006ed1d41ea8e3a33 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:13:50 +0100 Subject: [PATCH 05/18] test --- .github/workflows/test_unitaire_workflow.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_unitaire_workflow.yml b/.github/workflows/test_unitaire_workflow.yml index 414e759c..0007de40 100644 --- a/.github/workflows/test_unitaire_workflow.yml +++ b/.github/workflows/test_unitaire_workflow.yml @@ -9,15 +9,14 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax - architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified + python-version: ${{ matrix.python-version }} - run: python my_script.py - name: Installation des dépendances run: npm install - name: Execution des tests unitaire run: npm test - name: Execution du code coverage - run: npm run cover + run: pytest - name: Récupération du rapport uses: actions/upload-artifact@v3 with: From e01fbe20b361ec5c5c49fe97b743bc49d71dfb44 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:15:10 +0100 Subject: [PATCH 06/18] test --- .github/workflows/test_unitaire_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_unitaire_workflow.yml b/.github/workflows/test_unitaire_workflow.yml index 0007de40..722564fd 100644 --- a/.github/workflows/test_unitaire_workflow.yml +++ b/.github/workflows/test_unitaire_workflow.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/setup-python with: python-version: ${{ matrix.python-version }} - run: python my_script.py From e2abc710867bf9e2aafd9a767b97ebfc519e6c91 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:16:09 +0100 Subject: [PATCH 07/18] test 1 --- .github/workflows/test_unitaire_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_unitaire_workflow.yml b/.github/workflows/test_unitaire_workflow.yml index 722564fd..27bc1d65 100644 --- a/.github/workflows/test_unitaire_workflow.yml +++ b/.github/workflows/test_unitaire_workflow.yml @@ -6,7 +6,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout - uses: actions/setup-python with: python-version: ${{ matrix.python-version }} From 43867b7f4595b4a1bf49cf9a4554b7590a1514ae Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:40:31 +0100 Subject: [PATCH 08/18] test333 --- .github/workflows/test_unitaire.yml | 48 ++++++++++++++++++++ .github/workflows/test_unitaire_workflow.yml | 24 ---------- 2 files changed, 48 insertions(+), 24 deletions(-) create mode 100644 .github/workflows/test_unitaire.yml delete mode 100644 .github/workflows/test_unitaire_workflow.yml diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml new file mode 100644 index 00000000..d75019bb --- /dev/null +++ b/.github/workflows/test_unitaire.yml @@ -0,0 +1,48 @@ +name: test automatique +on: + push: +jobs: + tests-app: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['2.7', '3.7', '3.9'] + steps: + - name: Récupération du répository + uses: actions/checkout@v3 + - name: installation de python + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Info sur la version testé + run: echo ${{ matrix.python-version }} + - name: Install des dépendances + run: pip install -r requirements.txt + - name: Execution du code coverage + run: pytest + - name: Récupération du rapport + uses: actions/upload-artifact@v3 + with: + name: reports + path: ./reports/** + build-app: + needs: Tests-app + runs-on: ubuntu-latest + steps: + - name: Récupération du repo + uses: actions/checkout@v3 + - name: Installation de QEMU + uses: docker/sutup-qemu-action@v1 + - name: Installation de docker BuildX + uses: docker/sutup-buildx-action@ + - name: Login au docker hub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME}} + password: ${{ secrets.DOCKER_PASSWORD}} + - name: Build & push docker + uses: docker/build-puch-action@v2 + with: + context: . + push: true + tags: ${{ secrets.DOCKER_USERNAME}}/weather:${{ env.APP_VERSION }} \ No newline at end of file diff --git a/.github/workflows/test_unitaire_workflow.yml b/.github/workflows/test_unitaire_workflow.yml deleted file mode 100644 index 27bc1d65..00000000 --- a/.github/workflows/test_unitaire_workflow.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Tests unitaire - -on: push - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout - - uses: actions/setup-python - with: - python-version: ${{ matrix.python-version }} - - run: python my_script.py - - name: Installation des dépendances - run: npm install - - name: Execution des tests unitaire - run: npm test - - name: Execution du code coverage - run: pytest - - name: Récupération du rapport - uses: actions/upload-artifact@v3 - with: - name: reports - path: ./reports/** \ No newline at end of file From e027c55955bf46e85e510b840f62da9168b79ead Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:44:30 +0100 Subject: [PATCH 09/18] test unitaire --- .github/workflows/test_unitaire.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index d75019bb..07dba73d 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -1,6 +1,5 @@ name: test automatique -on: - push: +on: push jobs: tests-app: runs-on: ubuntu-latest @@ -31,8 +30,8 @@ jobs: steps: - name: Récupération du repo uses: actions/checkout@v3 - - name: Installation de QEMU - uses: docker/sutup-qemu-action@v1 + - name: installation de python + uses: actions/setup-python@v2 - name: Installation de docker BuildX uses: docker/sutup-buildx-action@ - name: Login au docker hub From 3d1fd654fe1704915688af31e3eb308d88efa4e5 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:45:58 +0100 Subject: [PATCH 10/18] testt --- .github/workflows/test_unitaire.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index 07dba73d..97ee469c 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -3,9 +3,6 @@ on: push jobs: tests-app: runs-on: ubuntu-latest - strategy: - matrix: - python-version: ['2.7', '3.7', '3.9'] steps: - name: Récupération du répository uses: actions/checkout@v3 From 0c04c7e5367b544ab177f98719be27dd1fcba52e Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 15:57:49 +0100 Subject: [PATCH 11/18] test unitaire --- .github/workflows/test_unitaire.yml | 57 ++++++++++++----------------- dockerfile | 9 +++++ 2 files changed, 32 insertions(+), 34 deletions(-) create mode 100644 dockerfile diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index 97ee469c..a85ea521 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -1,44 +1,33 @@ -name: test automatique -on: push -jobs: - tests-app: +name: Test unitaire de l'app +on: push +env: + APP_VERSION: "1.0.0" +jobs: + Tests-app: runs-on: ubuntu-latest - steps: - - name: Récupération du répository - uses: actions/checkout@v3 - - name: installation de python - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - name: Info sur la version testé - run: echo ${{ matrix.python-version }} - - name: Install des dépendances - run: pip install -r requirements.txt - - name: Execution du code coverage - run: pytest - - name: Récupération du rapport - uses: actions/upload-artifact@v3 - with: - name: reports - path: ./reports/** - build-app: + steps: + - name: J'effectue des tests + id: test + run: echo "Salut" + + Build-app: needs: Tests-app runs-on: ubuntu-latest steps: - - name: Récupération du repo + - name: Récupération du répo uses: actions/checkout@v3 - - name: installation de python - uses: actions/setup-python@v2 - - name: Installation de docker BuildX - uses: docker/sutup-buildx-action@ - - name: Login au docker hub + - name: Installation de QEMU + uses: docker/setup-qemu-action@v1 + - name: Installation de Docker BuildX + uses: docker/setup-buildx-action@v1 + - name: Login au docker Hub uses: docker/login-action@v1 with: - username: ${{ secrets.DOCKER_USERNAME}} - password: ${{ secrets.DOCKER_PASSWORD}} + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} - name: Build & push docker - uses: docker/build-puch-action@v2 + uses: docker/build-push-action@v2 with: - context: . + context: . push: true - tags: ${{ secrets.DOCKER_USERNAME}}/weather:${{ env.APP_VERSION }} \ No newline at end of file + tags: ${{ secrets.DOCKER_USERNAME }}/imagination:${{ env.APP_VERSION }} \ No newline at end of file diff --git a/dockerfile b/dockerfile new file mode 100644 index 00000000..ec719ab6 --- /dev/null +++ b/dockerfile @@ -0,0 +1,9 @@ +FROM python:latest + +WORKDIR /app + +COPY . . + +RUN pip install -r requirements.txt + +CMD ["npm", "run", "start"] \ No newline at end of file From 11aa78940438b297bca671086d0faba36130f989 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 16:02:50 +0100 Subject: [PATCH 12/18] test99 --- .github/workflows/test_unitaire.yml | 33 +++++++++++++++++++---------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index a85ea521..12c21508 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -1,15 +1,26 @@ -name: Test unitaire de l'app -on: push -env: - APP_VERSION: "1.0.0" -jobs: - Tests-app: +name: test automatique +on: push +jobs: + tests-app: runs-on: ubuntu-latest - steps: - - name: J'effectue des tests - id: test - run: echo "Salut" - + steps: + - name: Récupération du répository + uses: actions/checkout@v3 + - name: installation de python + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Info sur la version testé + run: echo ${{ matrix.python-version }} + - name: Install des dépendances + run: pip install -r requirements.txt + - name: Execution du code coverage + run: pytest + - name: Récupération du rapport + uses: actions/upload-artifact@v3 + with: + name: reports + path: ./reports/** Build-app: needs: Tests-app runs-on: ubuntu-latest From 8420d8d497c1f919fb267b48f63964d67d89ea45 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 16:07:24 +0100 Subject: [PATCH 13/18] test unitaire --- .github/workflows/test_unitaire.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index 12c21508..3110ac5a 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -21,7 +21,7 @@ jobs: with: name: reports path: ./reports/** - Build-app: + Build: needs: Tests-app runs-on: ubuntu-latest steps: From de7a7bea1e9d42e6cbfa8c18a81182bbbbd746c5 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 16:13:37 +0100 Subject: [PATCH 14/18] test --- .github/workflows/pull_request_closed.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/pull_request_closed.yml b/.github/workflows/pull_request_closed.yml index e69de29b..cae8b96f 100644 --- a/.github/workflows/pull_request_closed.yml +++ b/.github/workflows/pull_request_closed.yml @@ -0,0 +1,13 @@ +name: pull_request + +on: + pull_request: + types: [closed] +jobs: + request_info: + runs-on: ubuntu-latest + steps: + - name: récupération pull_request + uses: action/checkout@v3 + - name: pull reponse + run: echo "Je fait des test et ensuite le build" \ No newline at end of file From 88455be4680e0e77868599d320c62e1ad0281f74 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 16:21:52 +0100 Subject: [PATCH 15/18] test5 --- .github/workflows/test_unitaire.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index 3110ac5a..761d5bec 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -25,20 +25,20 @@ jobs: needs: Tests-app runs-on: ubuntu-latest steps: - - name: Récupération du répo + - name: Récupération du repo uses: actions/checkout@v3 - name: Installation de QEMU - uses: docker/setup-qemu-action@v1 - - name: Installation de Docker BuildX - uses: docker/setup-buildx-action@v1 - - name: Login au docker Hub + uses: docker/sutup-qemu-action@v1 + - name: Installation de docker BuildX + uses: docker/sutup-buildx-action@ + - name: Login au docker hub uses: docker/login-action@v1 with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} + username: ${{ secrets.DOCKER_USERNAME}} + password: ${{ secrets.DOCKER_PASSWORD}} - name: Build & push docker - uses: docker/build-push-action@v2 + uses: docker/build-puch-action@v2 with: - context: . + context: . push: true - tags: ${{ secrets.DOCKER_USERNAME }}/imagination:${{ env.APP_VERSION }} \ No newline at end of file + tags: ${{ secrets.DOCKER_USERNAME}}/weather:${{ env.APP_VERSION }} \ No newline at end of file From 81dc9a9d42353df7d57200d4b04894e253a90d39 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 16:23:59 +0100 Subject: [PATCH 16/18] testx --- .github/workflows/test_unitaire.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index 761d5bec..3110ac5a 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -25,20 +25,20 @@ jobs: needs: Tests-app runs-on: ubuntu-latest steps: - - name: Récupération du repo + - name: Récupération du répo uses: actions/checkout@v3 - name: Installation de QEMU - uses: docker/sutup-qemu-action@v1 - - name: Installation de docker BuildX - uses: docker/sutup-buildx-action@ - - name: Login au docker hub + uses: docker/setup-qemu-action@v1 + - name: Installation de Docker BuildX + uses: docker/setup-buildx-action@v1 + - name: Login au docker Hub uses: docker/login-action@v1 with: - username: ${{ secrets.DOCKER_USERNAME}} - password: ${{ secrets.DOCKER_PASSWORD}} + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} - name: Build & push docker - uses: docker/build-puch-action@v2 + uses: docker/build-push-action@v2 with: - context: . + context: . push: true - tags: ${{ secrets.DOCKER_USERNAME}}/weather:${{ env.APP_VERSION }} \ No newline at end of file + tags: ${{ secrets.DOCKER_USERNAME }}/imagination:${{ env.APP_VERSION }} \ No newline at end of file From 9afe8562ad72e2413da7d54d90d96b3cac2a9ef9 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 16:29:23 +0100 Subject: [PATCH 17/18] test9 --- .github/workflows/test_unitaire.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index 3110ac5a..9ee30ee5 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -1,7 +1,7 @@ name: test automatique on: push jobs: - tests-app: + testsapp: runs-on: ubuntu-latest steps: - name: Récupération du répository @@ -21,7 +21,7 @@ jobs: with: name: reports path: ./reports/** - Build: + Buildapp: needs: Tests-app runs-on: ubuntu-latest steps: From 50e3e779a344c6c818f45bee38a4f62dd7d09641 Mon Sep 17 00:00:00 2001 From: sabaghe Date: Fri, 4 Mar 2022 16:30:35 +0100 Subject: [PATCH 18/18] test66 --- .github/workflows/test_unitaire.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_unitaire.yml b/.github/workflows/test_unitaire.yml index 9ee30ee5..3dfb5a73 100644 --- a/.github/workflows/test_unitaire.yml +++ b/.github/workflows/test_unitaire.yml @@ -22,7 +22,7 @@ jobs: name: reports path: ./reports/** Buildapp: - needs: Tests-app + needs: Testsapp runs-on: ubuntu-latest steps: - name: Récupération du répo