Skip to content

Commit aee7ecb

Browse files
authored
tests(build.yml): add experimental for snapshots
1 parent bc73b84 commit aee7ecb

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,23 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ${{ matrix.os }}
14+
continue-on-error: ${{ matrix.experimental }}
1415
strategy:
1516
fail-fast: false
1617
matrix:
1718
os: [ubuntu-latest, macos-latest, windows-latest]
18-
emacs-version: [26.1, 26.2, 26.3, 27.1, 27.2, 28.1, snapshot]
19+
emacs-version: [26.1, 26.2, 26.3, 27.1, 27.2, 28.1]
20+
experimental: [false]
21+
include:
22+
- os: ubuntu-latest
23+
emacs-version: snapshot
24+
experimental: true
25+
- os: macos-latest
26+
emacs-version: snapshot
27+
experimental: true
28+
- os: windows-latest
29+
emacs-version: snapshot
30+
experimental: true
1931

2032
steps:
2133
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it

0 commit comments

Comments
 (0)