Skip to content

Commit

Permalink
Added github files
Browse files Browse the repository at this point in the history
  • Loading branch information
vladevelops committed Oct 10, 2024
1 parent a7845e5 commit 9624107
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Bug report
about: Found something wrong with gtestler?
title: ''
labels: ''

---

12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''

---

**What issue are you having that you need gtestler to solve?**

**What api you are missing?**

27 changes: 27 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Format

on: [push, pull_request]

jobs:
format:
name: Stylua
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: date +%W > weekly

- name: Restore cache
id: cache
uses: actions/cache@v2
with:
path: |
~/.cargo/bin
key: ${{ runner.os }}-cargo-${{ hashFiles('weekly') }}

- name: Install
if: steps.cache.outputs.cache-hit != 'true'
run: cargo install stylua

- name: Format
run: stylua --check lua/ --config-path=.stylua.toml

8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
fmt:
echo "Formatting..."
stylua lua/ --config-path=.stylua.toml

# lint:
# echo "===> Linting"
# luacheck lua/ --globals vim

2 changes: 1 addition & 1 deletion lua/gtestler/TODO.md → TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
- [x] add user action split option
- [x] BUG: after quiting tests list buffer esc and CR effect remains on main buffer
- [x] delete all relative tests, user callable
- [x] documentation
- [ ] consider test name change, so delete test if not found
- [ ] run tests by numbers
- [ ] add test file location, and search test location in that file
- [ ] add line to the floating buffer with fields to explain
- [ ] documentation
- [ ] add all tests in buffer to gtester list
- [ ] run test in float window

0 comments on commit 9624107

Please sign in to comment.