diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2024-11-26 07:34:16 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-26 07:34:16 -0800 |
| commit | 16008a64f6ab9309641f30b8a7c9a432f1649b9a (patch) | |
| tree | 349e8a7678ba9f7579e25f3b7dd1386e344c267d /.github/workflows/lint.yml | |
| parent | refactor: remove implementation of util.path.dirname #3460 (diff) | |
| download | nvim-lspconfig-16008a64f6ab9309641f30b8a7c9a432f1649b9a.tar nvim-lspconfig-16008a64f6ab9309641f30b8a7c9a432f1649b9a.tar.gz nvim-lspconfig-16008a64f6ab9309641f30b8a7c9a432f1649b9a.tar.bz2 nvim-lspconfig-16008a64f6ab9309641f30b8a7c9a432f1649b9a.tar.lz nvim-lspconfig-16008a64f6ab9309641f30b8a7c9a432f1649b9a.tar.xz nvim-lspconfig-16008a64f6ab9309641f30b8a7c9a432f1649b9a.tar.zst nvim-lspconfig-16008a64f6ab9309641f30b8a7c9a432f1649b9a.zip | |
ci: check for deprecated util functions #3462
Diffstat (limited to '.github/workflows/lint.yml')
| -rw-r--r-- | .github/workflows/lint.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7ee1244d..def839e9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,6 +6,18 @@ on: - master jobs: + deprecated-functions: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: ${{ github.event.pull_request.head.sha }} + - run: | + if ! bash .github/ci/run_sanitizer.sh ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }}; then + exit 1 + fi + luacheck: runs-on: ubuntu-latest steps: |
