Add support to select the code block language from the org property =… #34
This file contains 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: Continous Integration | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
EVM_EMACS: [emacs-25.3-travis] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-ruby@v1 | |
- name: install Emacs | |
env: | |
EVM_EMACS: ${{matrix.EVM_EMACS}} | |
run: | | |
export PATH=$HOME/.evm/bin:$PATH | |
git clone https://github.com/rejeep/evm.git $HOME/.evm | |
evm config path /tmp | |
evm install $EVM_EMACS --use --skip | |
- name: run test | |
run: | | |
export PATH=$HOME/.evm/bin:$PATH | |
emacs -Q --batch -L . \ | |
--load literate-elisp \ | |
--eval "(setf literate-elisp-test-p t)" \ | |
--funcall literate-elisp-batch-load literate-elisp.org \ | |
--funcall literate-elisp-batch-load readme.org \ | |
--funcall ert-run-tests-batch-and-exit | |