Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
distro:
- alpine
- archlinux
- debian
- fedora
- opensuse
- ubuntu
runs-on: ubuntu-latest
steps:
Expand All @@ -27,4 +29,5 @@ jobs:

- name: Only build
run: |
docker buildx build --platform linux/amd64 --output "type=image,push=false" -f tests/Dockerfile-${{ matrix.distro }} .
docker buildx build --platform linux/amd64 --output "type=image,push=false" -f tests/Dockerfile-${{ matrix.distro }} .

2 changes: 1 addition & 1 deletion config/vim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ local opts = {
noremap = true,
silent = true
}
vim.api.nvim_set_keymap('n', 'tt', ':NvimTreeToggle<CR>', opts)
vim.api.nvim_set_keymap('n', 't', ':NvimTreeToggle<CR>', opts)
vim.api.nvim_set_keymap('n', 'qqq', ':qall<CR>', opts)
vim.api.nvim_set_keymap('n', '<C-f>', ':Telescope find_files<CR>', opts)
vim.api.nvim_set_keymap('n', '<leader>/', ':Rg<CR>', opts)
Expand Down
9 changes: 9 additions & 0 deletions tests/Dockerfile-debian
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM debian:latest

COPY ../. /workspace

WORKDIR /workspace

RUN apt install --update -y make sudo

RUN make
9 changes: 9 additions & 0 deletions tests/Dockerfile-opensuse
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM opensuse/leap:latest

COPY ../. /workspace

WORKDIR /workspace

RUN zypper install -y make sudo

RUN make
Loading