6
0

Improved naming of stages

This commit is contained in:
Jon Michael Aanes 2024-03-15 17:05:02 +01:00
parent 76077b1281
commit 3784359076
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -17,13 +17,13 @@ jobs:
run: | run: |
apt-get update apt-get update
apt-get install -y python3 python3-pip apt-get install -y python3 python3-pip
- name: Installing 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
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Installing package - name: Installing package
run: python3 -m pip install . run: python3 -m pip install .
- name: Test - name: Test Python Code
run: python3 -m pytest test run: python3 -m pytest test
publish: publish:
runs-on: ubuntu-latest runs-on: ubuntu-latest