Skip to content

Commit d28539c

Browse files
committed
ci: add continue-on-error workflow
1 parent 6df77b2 commit d28539c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Continue on error
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Run tests
11+
run: echo "Running tests..."
12+
13+
check-outdated-dependencies:
14+
runs-on: ubuntu-latest
15+
16+
continue-on-error: true
17+
18+
steps:
19+
- name: Check outdated deps
20+
run: |
21+
echo "Checking for outdated dependencies..." && false

0 commit comments

Comments
 (0)