Fix nvim_oxi::api::notify()
#923
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
neovim: [v0.10.2] | |
include: | |
- neovim: v0.9.5 | |
features: "--features neovim-0-9" | |
- neovim: v0.10.2 | |
features: "--features neovim-0-10" | |
- neovim: Nightly | |
features: "--features neovim-nightly" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Neovim ${{ matrix.neovim }} | |
uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.neovim }} | |
- name: Install latest stable `rustc` | |
uses: dtolnay/rust-toolchain@stable | |
- name: Check target dir | |
run: cargo metadata --format-version 1 --manifest-path Cargo.toml | jq -r .target_directory | |
- name: Run tests | |
run: cargo test --workspace ${{ matrix.features }} | |
working-directory: . |