aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGiuseppe Gadola <67549788+giusgad@users.noreply.github.com>2023-02-12 19:11:23 +0100
committerGiuseppe Gadola <giusgadola@gmail.com>2023-02-12 19:12:45 +0100
commitf10b1ab2d1e20a7d73f5e700a0bd552161655f23 (patch)
treeb5d947925ad4362b8cfcbcedfd56c3ba59668bea /.github/workflows
parentdocs(readme): added credits (diff)
chore: deleted .github/workflows directory
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/default.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml
deleted file mode 100644
index ec9986d..0000000
--- a/.github/workflows/default.yml
+++ /dev/null
@@ -1,32 +0,0 @@
----
-on: [push, pull_request]
-name: default
-
-jobs:
- stylua:
- name: stylua
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - uses: JohnnyMorganz/stylua-action@v1
- 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@v3
-
- - uses: rhysd/action-setup-vim@v1
- with:
- neovim: true
- version: ${{ matrix.nvim-versions }}
-
- - name: run tests
- run: make test