feat(neovim): disable info notifications #509
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 tests on Ubuntu | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| jobs: | |
| run-test-ubuntu: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install system packages | |
| run: | | |
| chmod +x os/linux/ubuntu.sh | |
| sudo ./os/linux/ubuntu.sh install_ubuntu_deps | |
| - name: Install brew | |
| run: | | |
| ./os/linux/ubuntu.sh install_homebrew | |
| echo "PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:$PATH" >> $GITHUB_ENV | |
| echo "HOMEBREW_NO_ANALYTICS=1" >> $GITHUB_ENV | |
| - name: Install dependencies | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| chmod +x os/linux/dependencies.sh | |
| ./os/linux/dependencies.sh | |
| - name: Run tests | |
| run: | | |
| chmod +x run-tests.exp | |
| ./run-tests.exp |