Browse Source

Clarify names of actions

Jan Philip Göpfert 2 years ago
parent
commit
e0ab9e5248

+ 3 - 3
.github/workflows/test-install.yml

@@ -1,4 +1,4 @@
-name: Run tests
+name: Test installation
 
 on: [push]
 
@@ -15,11 +15,11 @@ jobs:
               uses: actions/setup-python@v4
               with:
                   python-version: ${{ matrix.python-version }}
-            - name: Install dependencies
+            - name: Install package
               run: |
                   python -m pip install --upgrade pip
                   pip install .
                   pip install pytest
-            - name: Test with pytest
+            - name: Test installation with pytest
               run: |
                   pytest

+ 2 - 2
.github/workflows/test-specific-environment.yml

@@ -1,4 +1,4 @@
-name: Run tests
+name: Test in specific environment
 
 on: [push]
 
@@ -15,7 +15,7 @@ jobs:
               uses: actions/setup-python@v4
               with:
                   python-version: ${{ matrix.python-version }}
-            - name: Install dependencies
+            - name: Set up environment
               run: |
                   python -m pip install --upgrade pip
                   pip install pytest