Emojify step names in workflows. Stop publishing to TestPyPi from PR

This commit is contained in:
Debanjum Singh Solanky
2023-03-01 10:56:39 -06:00
parent 7ad251b8ef
commit ed177db2be
6 changed files with 22 additions and 29 deletions

View File

@@ -41,16 +41,16 @@ jobs:
with:
python-version: ${{ matrix.python_version }}
- name: Install Dependencies
- name: ⏬️ Install Dependencies
run: |
sudo apt update && sudo apt install -y libegl1
python -m pip install --upgrade pip
- name: Install Application
- name: ⬇️ Install Application
run: pip install --upgrade .[dev]
- name: Validate Application
- name: 🌡️ Validate Application
run: pre-commit run --hook-stage manual --all
- name: Test Application
- name: 🧪 Test Application
run: pytest