Fix: open on linux / xdg-open output's parent dir #29
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: test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "lua/**" | |
| - "tests/**" | |
| jobs: | |
| run_tests: | |
| name: unit tests | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| rev: [nightly, v0.9.0, stable] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v4 | |
| name: Set up Go | |
| with: | |
| go-version: ~1.21 | |
| - uses: rhysd/action-setup-vim@v1 | |
| name: Set up Neovim | |
| with: | |
| neovim: true | |
| version: ${{ matrix.rev }} | |
| - name: Run tests with Neovim | |
| shell: bash | |
| run: | | |
| export PATH="${PWD}/_neovim/bin:${PATH}" | |
| export VIM="${PWD}/_neovim/share/nvim/runtime" | |
| nvim --version | |
| make test-nvim |