Files
test-samurai-jest-runner/.gitea/workflows/tests.yaml
M.Schirmer b70d26256c
Some checks failed
tests / test (push) Failing after 4s
create runner with ChatGPT-Codex by using the AGENTS.md
2026-01-03 14:53:56 +01:00

21 lines
464 B
YAML

name: tests
on:
push:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Neovim (AppImage)
run: |
curl -L -o nvim.appimage https://github.com/neovim/neovim/releases/download/v0.11.4/nvim.appimage
chmod +x nvim.appimage
sudo mv nvim.appimage /usr/local/bin/nvim
- name: Run tests
run: bash run_test.sh