1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
name: test
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version:
- 26.3
- 27.1
- 27.2
# - snapshot
steps:
- uses: actions/checkout@v2
- name: Install emacs
uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: "x64"
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rust-analysis, rust-src, rls
- name: Install other depedencies
run: |
pip3 install python-language-server autopep8 rope pycodestyle pyflakes pydocstyle mccabe pylint
sudo apt-get install clangd-9
- name: Build eglot
run: make compile
- name: Test eglot
run: |
make eglot-check
|