Skip to content

Commit 26c3dd0

Browse files
committed
🎨 style(workflows): add emojis to step names in deploy.yml and testing.yml for better readability
⬆️ upgrade(workflows): update actions/checkout from v1 to v3 in testing.yml for latest features and fixes
1 parent be70a61 commit 26c3dd0

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: deploy
1+
name: 🚀 Deploy Docs
22
on:
33
push:
44
branches:
@@ -10,19 +10,19 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- name: Checkout
13+
- name: 🛒 Checkout
1414
uses: actions/checkout@master
15-
- name: Set up Python 3.10
15+
- name: 🐍 Set up Python 3.10
1616
uses: actions/setup-python@v4
1717
with:
1818
python-version: '3.10'
19-
- name: Install dependencies
19+
- name: 🧰 Install dependencies
2020
run: make install IGNORE_VENV=1
21-
- name: Build Docs
21+
- name: 📚 Build Docs
2222
run: |
2323
make docs
2424
touch docs/build/html/.nojekyll
25-
- name: Deploy Docs
25+
- name: 🚀 Deploy Docs
2626
uses: peaceiris/actions-gh-pages@v2.5.0
2727
env:
2828
PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/testing.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
1-
name: testing
1+
name: 🧪 Test
22

33
on: [push]
44

55
jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v1
10-
- name: Set up Python 3.10
9+
- name: 🛒 Checkout
10+
uses: actions/checkout@v3
11+
- name: 🐍 Set up Python 3.10
1112
uses: actions/setup-python@v4
1213
with:
1314
python-version: '3.10'
14-
- name: Install dependencies
15+
- name: 🧰 Install dependencies
1516
run: make install IGNORE_VENV=1
16-
- name: Lint
17+
- name: 👮 Lint
1718
run: make lint
18-
- uses: jakebailey/pyright-action@v1
19+
- name: 🔍 Type check
20+
uses: jakebailey/pyright-action@v1
1921
with:
2022
version: 1.1.316
21-
- name: Test
23+
- name: 🧪 Test
2224
run: make tests

0 commit comments

Comments
 (0)