runtime error instead of load error #8
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: Run ERT tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - dev | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Update apt | |
| run: sudo apt update 2> /dev/null | |
| - name: Install emacs | |
| run: | | |
| sudo add-apt-repository ppa:ubuntuhandbook1/emacs | |
| sudo apt update | |
| sudo apt install emacs emacs-common | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - name: Download Dependencies | |
| run: | | |
| curl -O https://raw.githubusercontent.com/bzg/org-mode/refs/heads/main/testing/org-test.el | |
| - name: Run Tests | |
| run: | | |
| emacs --batch --script run-tests.el |