Skip to content

Commit aba8722

Browse files
authored
ci: Add experimental flag (#731)
1 parent 18254e1 commit aba8722

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on: [push, pull_request]
55
jobs:
66
test:
77
runs-on: ${{ matrix.os }}
8+
continue-on-error: ${{ matrix.experimental }}
89
strategy:
910
fail-fast: false
1011
matrix:
@@ -13,7 +14,17 @@ jobs:
1314
- 26.3
1415
- 27.2
1516
- 28.2
16-
- snapshot
17+
experimental: [false]
18+
include:
19+
- os: ubuntu-latest
20+
emacs-version: snapshot
21+
experimental: true
22+
- os: macos-latest
23+
emacs-version: snapshot
24+
experimental: true
25+
- os: windows-latest
26+
emacs-version: snapshot
27+
experimental: true
1728

1829
steps:
1930
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)