From 047d9c1be4375ce986d54068409d22f4856837a6 Mon Sep 17 00:00:00 2001 From: Vincent Camus Date: Mon, 2 Sep 2024 08:22:44 -0400 Subject: [PATCH] Update --- .github/workflows/workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index daabcceb7..eafc9895b 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -2,9 +2,9 @@ name: CI workflow on: push: - branches: ["main"] + branches: [ "main" ] pull_request: - branches: ["main"] + branches: [ "main" ] jobs: build: @@ -15,9 +15,9 @@ jobs: uses: actions/checkout@v3 - name: Install dependencies - runs: | + run: | python -m pip install --upgrade pip - pip3 install -r requirements.txt + pip install -r requirements.txt - name: Lint with flake8 run: |