Skip to content

Commit

Permalink
Run CI for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
greghendershott committed Jul 15, 2021
1 parent 37506c6 commit dd7d5a8
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,39 @@ jobs:
architecture: 'x64'
distribution: 'full'
version: ${{ matrix.racket_version }}
- name: Install Package
- name: Install Emacs Packages
run: make deps
- name: Compile Elisp
run: make compile
- name: Run Tests
run: make test

test_windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
emacs_version:
- '27.1' # most recent release
racket_version:
- 'stable' # most recent release
name: Test Windows Emacs ${{ matrix.emacs_version }} and Racket ${{ matrix.racket_version }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Emacs on Windows
uses: jcs090218/setup-emacs-windows@master
with:
version: ${{ matrix.emacs_version }}
- name: Install Racket
uses: Bogdanp/setup-racket@v1.5
with:
architecture: 'x64'
distribution: 'full'
platform: 'windows'
version: ${{ matrix.racket_version }}
- name: Install Emacs Packages
run: make deps
- name: Run Tests
run: emacs --batch --no-site-file -q -eval "(progn (add-to-list (quote load-path) nil) (package-initialize))" -l ert -l racket-tests.el -f ert-run-tests-batch-and-exit

0 comments on commit dd7d5a8

Please sign in to comment.