name: Tests on: push: branches: - 'master' pull_request: types: [opened, synchronize, reopened, ready_for_review] branches: - 'master' # Cancel any in-progress CI runs for a PR if it is updated concurrency: group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} cancel-in-progress: true jobs: check_compilation_unix_like: strategy: fail-fast: false matrix: os: [ubuntu-latest] cc: [ gcc ] name: Run tests runs-on: ${{ matrix.os }} env: CC: ${{ matrix.cc }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: nightly - uses: Swatinem/rust-cache@v1 - name: Test Dependencies run: | mkdir -p ~/.local/share/nvim/site/pack/plenary.nvim/start cd ~/.local/share/nvim/site/pack/plenary.nvim/start git clone https://github.com/nvim-lua/plenary.nvim ~/.cargo/bin/cargo +nightly install --git https://github.com/theHamsta/highlight-assertions --locked - name: Install and prepare Neovim env: NVIM_TAG: stable TREE_SITTER_CLI_TAG: v0.20.2 run: | bash ./scripts/ci-install-${{ matrix.os }}.sh - name: Setup Parsers Cache id: parsers-cache uses: actions/cache@v2 with: path: ./parser/ key: ${{ matrix.os }}-parsers-v1-${{ hashFiles('./lockfile.json', './lua/nvim-treesitter/parsers.lua', './lua/nvim-treesitter/install.lua', './lua/nvim-treesitter/shell_selectors.lua') }} - name: ccache if: matrix.os != 'windows-2022' uses: hendrikmuhs/ccache-action@v1 with: key: ${{ matrix.os }}-${{ matrix.cc }} - name: Compile parsers Unix like if: ${{ matrix.os != 'windows-latest' && steps.parsers-cache.outputs.cache-hit != 'true' }} run: | export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" nvim --headless -c "TSInstallSync all" -c "q" - name: Tests run: PATH=~/.cargo/bin:$PATH ./scripts/run_tests.sh