Skip to content

Close #26 - Add ability to stop Neural #39

Close #26 - Add ability to stop Neural

Close #26 - Add ability to stop Neural #39

Workflow file for this run

---
name: CI
on: # yamllint disable-line rule:truthy
push:
branches: [ main ] # yamllint disable-line rule:brackets
tags:
- v[0-9]+.[0-9]+.x
- v[0-9]+.[0-9]+.[0-9]+
pull_request:
branches: [ main ] # yamllint disable-line rule:brackets
jobs:
build_image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build docker run image
shell: bash
env:
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }}
DOCKER_HUB_PASS: ${{ secrets.DOCKER_HUB_PASS }}
run: ./run-tests --build-image
test_neural:
needs: build_image
runs-on: ubuntu-latest
strategy:
matrix:
job-type:
- '--vim-80-only'
- '--vim-90-only'
- '--neovim-08-only'
- '--python-only'
- '--linters-only'
steps:
- uses: actions/checkout@v2
- name: Run tests
run: ./run-tests -v ${{ matrix.job-type }}