6
0
This commit is contained in:
Jon Michael Aanes 2024-03-30 14:31:41 +01:00
parent 1930cca6b8
commit 27e7e30c27
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -18,6 +18,8 @@ jobs:
image: python:3 image: python:3
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install node
run: apt install node
- name: Installing Python Dependencies - name: Installing Python Dependencies
run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest
- name: Check out repository code - name: Check out repository code
@ -32,6 +34,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test] needs: [test]
steps: steps:
- name: Install node
run: apt install node
- name: Installing Python Dependencies - name: Installing Python Dependencies
run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest
- name: Check out repository code - name: Check out repository code