Skip to content

fix(provider): Correctly handle upload dirs for non-standard configurations #378

fix(provider): Correctly handle upload dirs for non-standard configurations

fix(provider): Correctly handle upload dirs for non-standard configurations #378

Workflow file for this run

---
name: CI
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches: [main]
concurrency:
group: |
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Run tests
strategy:
fail-fast: false
matrix:
version: [stable, nightly, v0.9.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rhysd/action-setup-vim@v1
name: Install Neovim
with:
neovim: true
version: ${{ matrix.version }}
- name: Run tests
run: make test
timeout-minutes: 1