Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 726da4d

Browse files
committed
Cleanup slack integration
1 parent 5478c79 commit 726da4d

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/python-package.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,35 @@ jobs:
2323
- uses: actions/setup-node@v2.1.2
2424
- uses: act10ns/slack@v1
2525
with:
26-
status: ${{ job.status }}
26+
status: starting
2727
channel: "#builds"
2828
if: always()
2929

3030
- name: Setup npm and build runestone.js
31+
id: create-runestone.js
3132
run: |
3233
npm install
3334
npm run build
3435
- name: Set up Python ${{ matrix.python-version }}
36+
id: install-python
3537
uses: actions/setup-python@v2
3638
with:
3739
python-version: ${{ matrix.python-version }}
3840
- name: Install dependencies
41+
id: install-deps
3942
run: |
4043
python -m pip install --upgrade pip
4144
python -m pip install flake8 pytest
4245
pip install .
4346
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
4447
- name: Test with pytest
48+
id: pytest
4549
run: |
4650
pytest
51+
52+
- uses: act10ns/slack@v1
53+
with:
54+
status: ${{ job.status }}
55+
steps: ${{ toJson(steps) }}
56+
channel: "#builds"
57+
if: always()

0 commit comments

Comments
 (0)