mirror of
https://github.com/emacs-vs/vs-light-theme.git
synced 2025-12-05 18:20:30 -08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
58 lines
1.2 KiB
YAML
58 lines
1.2 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
continue-on-error: ${{ matrix.experimental }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
emacs-version:
|
|
- 26.3
|
|
- 27.2
|
|
- 28.2
|
|
- 29.4
|
|
- 30.2
|
|
experimental: [false]
|
|
include:
|
|
- os: ubuntu-latest
|
|
emacs-version: snapshot
|
|
experimental: true
|
|
- os: macos-latest
|
|
emacs-version: snapshot
|
|
experimental: true
|
|
- os: windows-latest
|
|
emacs-version: snapshot
|
|
experimental: true
|
|
exclude:
|
|
- os: macos-latest
|
|
emacs-version: 26.3
|
|
- os: macos-latest
|
|
emacs-version: 27.2
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: jcs090218/setup-emacs@master
|
|
with:
|
|
version: ${{ matrix.emacs-version }}
|
|
|
|
- uses: emacs-eask/setup-eask@master
|
|
with:
|
|
version: 'snapshot'
|
|
|
|
- name: Run tests
|
|
run:
|
|
make ci
|