Fix compatibility with polymode after pm--visible-buffer-name removal #60
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.rst' | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.rst' | |
| branches-ignore: | |
| - 'master' | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| emacs_version: [26.3, 27.2, 28.2, 29.1] | |
| python-version: [3.7] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: nix | |
| uses: purcell/setup-emacs@master | |
| with: | |
| version: ${{ matrix.emacs_version }} | |
| - uses: actions/cache@v2 | |
| id: cache-cask-packages | |
| with: | |
| path: .cask | |
| key: cache-cask-packages-001 | |
| - uses: actions/cache@v2 | |
| id: cache-cask-executable | |
| with: | |
| path: ~/.cask | |
| key: cache-cask-executable-001 | |
| - uses: cask/setup-cask@master | |
| if: steps.cache-cask-executable.outputs.cache-hit != 'true' | |
| with: | |
| version: snapshot | |
| - name: paths | |
| run: | | |
| echo "$HOME/.cask/bin" >> $GITHUB_PATH | |
| - name: apt-get | |
| if: startsWith(runner.os, 'disable') | |
| run: | | |
| sudo apt-get -yq update | |
| DEBIAN_FRONTEND=noninteractive sudo apt-get -yq install gnutls-bin sharutils nodejs gfortran gnupg2 dirmngr libreadline-dev libcurl4-openssl-dev texlive-latex-base libfuse-dev libxml2-dev libssl-dev libzmq3-dev jupyter-core jupyter-client | |
| - name: test-mem-constrained | |
| run: | | |
| pip install yq | |
| make quick | |
| continue-on-error: ${{ matrix.emacs_version == 'snapshot' }} |