Fix nvim_oxi::api::notify()
#935
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 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Install LuaJIT | |
uses: leafo/gh-actions-lua@v10 | |
with: | |
# https://github.com/leafo/gh-actions-lua/issues/49 | |
luaVersion: "luajit-openresty" | |
- name: Set PKG_CONFIG_PATH | |
shell: bash | |
run: | | |
if [ "$RUNNER_OS" == "Windows" ]; then | |
echo "PKG_CONFIG_PATH=%cd%\.lua\lib\pkgconfig" >> $GITHUB_ENV | |
else | |
echo "PKG_CONFIG_PATH=$PWD/.lua/lib/pkgconfig" >> $GITHUB_ENV | |
fi | |
- name: Install Neovim v0.10.2 | |
uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: v0.10.2 | |
- name: Install latest stable `rustc` | |
uses: dtolnay/rust-toolchain@stable | |
- name: Build stuff | |
run: cargo test --workspace --features neovim-0-10 | |
- name: Check target dir | |
run: ls /home/runner/work/nvim-oxi/nvim-oxi/target/nvim_oxi_tests/tests/debug |