diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index c476fbefe..9f3ec3023 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -25,6 +25,12 @@ jobs: - name: Install dependencies run: brew install readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc + - name: Install Python dependencies + run: | + python3 -m pip install --upgrade pip + python3 -m pip install ansicolors + if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi + - name: make clean run: make clean @@ -60,6 +66,12 @@ jobs: - name: Install dependencies run: brew install readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc + - name: Install Python dependencies + run: | + python3 -m pip install --upgrade pip + python3 -m pip install ansicolors + if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi + - name: make clean run: make clean @@ -96,6 +108,12 @@ jobs: - name: Install dependencies run: brew install readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc + - name: Install Python dependencies + run: | + python3 -m pip install --upgrade pip + python3 -m pip install ansicolors + if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi + - name: Prepare Build Folders run: mkdir -p client/build