Skip to content

fix functions not getting highlighted #16

fix functions not getting highlighted

fix functions not getting highlighted #16

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- emacs: 29.1
lint: true
- emacs: snapshot
lint: false
steps:
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs }}
- uses: actions/checkout@v4
- name: Install dependencies
run: emacs -Q -l .github/workflows/init.el -batch
--eval "(package-install 'uiua-mode)"
--eval "(package-install 'package-lint)"
- name: Compile
run: emacs -Q -l .github/workflows/init.el -batch
-L . -f batch-byte-compile *.el
- name: Lint
if: ${{ matrix.lint }}
run: emacs -Q -l .github/workflows/init.el -batch
--eval '(setq package-lint-main-file "uiua-ts-mode.el")'
-f package-lint-batch-and-exit *.el