refactor: favor same tab win #493
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull request check | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
uses: ./.github/workflows/tests.yml | |
with: | |
neovim_versions: | | |
[ "nightly", "v0.9.4" ] | |
lua-language-server: | |
uses: ./.github/workflows/lua_language_server.yml | |
with: | |
lua_ls_version: 3.7.0 | |
neovim_versions: | | |
[ "nightly", "v0.9.4" ] | |
stylua: | |
name: stylua | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: JohnnyMorganz/stylua-action@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: latest | |
args: --color always --check . | |
luacheck: | |
name: luacheck | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y luarocks | |
sudo luarocks install luacheck | |
- name: Lint | |
run: sudo make luacheck | |
block-fixup: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Block Fixup Commit Merge | |
uses: 13rac1/block-fixup-merge-action@v2.0.0 |