Skip to content

Commit 11fdfdc

Browse files
committed
chore: add github actions test job
1 parent 710caf0 commit 11fdfdc

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Set up Go
21+
uses: actions/setup-go@v5
22+
with:
23+
go-version: 1.23
24+
25+
- name: Test
26+
run: make test

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Release Notes
22

3-
## v0.4.0 (2025-11-07)
3+
## v0.4.0 (2025-11-08)
44
- ✨ Loop directives like `@break`, `@continue`, `@breakIf`, `@continueIf` are now getting suggested only inside of loops.
5+
- 🧑‍💻 Added testing GitHub Actions job to run tests.
56

67
## v0.3.1 (2025-06-14)
78
- 🐛 Updated LSP textwire to the latest version which will fix `@break($1)` snippet to `@break`

0 commit comments

Comments
 (0)