]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/.github/workflows/main.yml

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / .github / workflows / main.yml
1 ---
2 name: CI
3 on:  # yamllint disable-line rule:truthy
4   push:
5     branches: [ master ]  # yamllint disable-line rule:brackets
6     tags:
7       - v[0-9]+.[0-9]+.x
8       - v[0-9]+.[0-9]+.[0-9]+
9   pull_request:
10     branches: [ master ]  # yamllint disable-line rule:brackets
11
12 jobs:
13   build_image:
14     runs-on: ubuntu-latest
15     steps:
16       - uses: actions/checkout@v4
17       - name: Build docker run image
18         shell: bash
19         env:
20           DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }}
21           DOCKER_HUB_PASS: ${{ secrets.DOCKER_HUB_PASS }}
22         run: ./run-tests --build-image
23   test_ale:
24     needs: build_image
25     runs-on: ubuntu-latest
26     strategy:
27       matrix:
28         vim-version:
29           - '--vim-80-only'
30           - '--vim-90-only'
31           - '--neovim-07-only'
32           - '--neovim-08-only'
33           - '--lua-only'
34           - '--linters-only'
35     steps:
36       - uses: actions/checkout@v4
37       - name: Run tests
38         run: ./run-tests -v ${{ matrix.vim-version }}