diff options
| author | Ellison <ellisonleao@gmail.com> | 2022-06-28 18:22:41 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-28 18:22:41 -0300 |
| commit | 7a5c7ace3ac169b2898a4c7d8abec42cf9e18003 (patch) | |
| tree | d60cd1b5ce9e2c8330158444bf2a9121c684ce7e /.github | |
| parent | 3352c12c083d0ab6285a9738b7679e24e7602411 (diff) | |
| download | gruvbox-7a5c7ace3ac169b2898a4c7d8abec42cf9e18003.tar.gz gruvbox-7a5c7ace3ac169b2898a4c7d8abec42cf9e18003.tar.xz | |
New configuration system and more (Ref #96) (#122)
* initial work
* adding more tests
* updates
* fixing overrides in groups with links
* fix bg switch and some hl groups
* adding languages hl groups
* adding plugins highlights
* stylua
* removing base module and fixing lightline
* adding terminal_color_* vars
* adding new screenshot
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..1f3e2ab --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,34 @@ +--- +on: [push, pull_request] +name: default + +jobs: + stylua: + name: stylua + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: JohnnyMorganz/stylua-action@1.0.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --color always --check lua + + test: + runs-on: ubuntu-latest + strategy: + matrix: + nvim-versions: ['stable', 'nightly'] + name: test + steps: + - name: checkout + uses: actions/checkout@v2 + + - uses: rhysd/action-setup-vim@v1 + with: + neovim: true + version: ${{ matrix.nvim-versions }} + + - name: run tests + run: make test + env: + PLENARY_DIR: vendor/plenary.nvim |
