Skip to content

Commit c67db7f

Browse files
Disable job cancel on build failure
1 parent 92e225f commit c67db7f

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
jobs:
1212
build:
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
os: [ubuntu-latest, windows-latest, macos-latest]
1617
runs-on: ${{ matrix.os }}
@@ -24,13 +25,6 @@ jobs:
2425
with:
2526
node-version: '20'
2627

27-
- uses: actions/setup-python@v5
28-
with:
29-
python-version: '3.10'
30-
- name: Install Python setup tools
31-
run: |
32-
pip install setuptools
33-
3428
- name: Install dependencies
3529
run: npm install
3630

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ on:
1111
jobs:
1212
build:
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
os: [ubuntu-latest, windows-latest, macos-latest]
1617
runs-on: ${{ matrix.os }}
17-
name: "Build - ${{ matrix.os }}"
18+
name: "Release - ${{ matrix.os }}"
1819

1920
steps:
2021
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)