Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
c9db13a
Fix #355
yuin Jan 2, 2023
3f43d29
Fix #315
yuin Jan 2, 2023
6db614b
Migrate to Github Actions
yuin Jan 2, 2023
2d9b0c1
Migrate to Github Actions
yuin Jan 2, 2023
7f64c10
Migrate to Github Actions
yuin Jan 2, 2023
b4ade3d
Migrate to Github Actions
yuin Jan 2, 2023
804e438
Add 'goto' statement
yuin Jan 4, 2023
80c50bc
Update README.rst
yuin Jan 5, 2023
1a665bc
Update README.rst
yuin Jan 5, 2023
fa815b5
Fix #423
yuin Jan 22, 2023
410e9bd
Convert math params to number instead of failing with error
mdogan Sep 10, 2021
71163b6
Use O_TRUNC for files opened with "w"
waschik Feb 19, 2023
3467063
Add test for file writing
waschik Feb 19, 2023
d212719
Merge pull request #427 from waschik/write-trunc
yuin Apr 6, 2023
2a0d34e
fix: fix os.date("!*t", os.time()) will not get UTC date time issue
ttys3 Apr 12, 2023
63a49a4
Fix lua coroutine context leak
deflinhec May 19, 2023
8ee9c41
Merge pull request #438 from deflinhec/bugfix/coroutine-context-leak
yuin May 29, 2023
b60d3cf
Merge pull request #425 from mdogan/master
yuin May 29, 2023
e61dab4
test: rollback to use env default TZ variable
ttys3 May 30, 2023
d21032d
Revert "test: rollback to use env default TZ variable"
ttys3 May 30, 2023
2b3f02d
Merge pull request #433 from ttys3/fix-utc-date-format
yuin May 30, 2023
729b5db
Issue #452 : fix xpcall with error in error handler returns (nil, nil)
mzki Aug 12, 2023
6543bc9
add missing call of test() for #423
mzki Aug 12, 2023
1543e9d
popen: support nil in second argument
0x501D Oct 9, 2023
018eaa0
Merge pull request #460 from 0x501D/fix-gh-459
yuin Oct 14, 2023
293e22e
Merge branch 'master' into fix-xpcall-error-in-error-handler
mzki Oct 22, 2023
9d7d921
Merge pull request #453 from mzki/fix-xpcall-error-in-error-handler
yuin Nov 4, 2023
1e3d646
Inlining regstry.Set*
yuin Dec 2, 2023
1388221
Remove LValue.assert* functions.
yuin Dec 2, 2023
e1b215f
Re-add link to relocated gluasocket library; remove broken link to gl…
drauschenbach Dec 3, 2023
da9f439
Merge pull request #463 from Megalithic-LLC/updated-link-to-gluasocket
yuin Dec 5, 2023
5b5b27f
iolib: fix different behavior in read function
0x501D Sep 28, 2023
2348fd0
Merge pull request #456 from 0x501D/gh-455-fix-read
yuin Dec 12, 2023
182b189
Add github.com/PeerDB-io/gluabit32 to README.rst
serprex Mar 19, 2024
ed6d26a
Update README.rst
Root-lee Apr 30, 2024
c5204ed
doc: add awesome-gopher-lua
Root-lee May 3, 2024
b720190
fix compiler producing incorrect LOADNIL byte code
tul Jul 26, 2024
ec73447
fix: typo error for CompileLua example
warjiang Jul 30, 2024
b5e3b3f
Remove io/ioutil usages (deprecated since Go 1.16)
toqueteos Aug 1, 2024
91b4cff
Merge pull request #496 from tul/loadnil_fix
yuin Nov 9, 2024
7f73012
Merge pull request #498 from toqueteos/remove-deprecated-ioutil
yuin Nov 9, 2024
d1cb61e
Merge pull request #497 from warjiang/fix/typo-error
yuin Nov 9, 2024
48fb8d7
Merge pull request #488 from Root-lee/fix-README-format-error
yuin Nov 9, 2024
ccacf66
Merge pull request #483 from serprex/gluabit32
yuin Nov 9, 2024
b3dcd3f
disable LOADNIL code generation optimisation
tul Jan 10, 2025
4911e39
PS-3239: error on too complex regex pattern (#1)
msoap Feb 19, 2025
0d1d551
Merge pull request #523 from tul/disable_loadnil_merge
yuin Apr 1, 2026
ed5db76
Merge pull request #525 from BrightLocal/master
yuin Apr 1, 2026
66d0cb7
chore: bump go version
yuin Apr 1, 2026
b59f85c
docs: convert README from rst to md
yuin Apr 1, 2026
b87eac2
chore: update test workflow
yuin Apr 1, 2026
75f4976
docs: update README
yuin Apr 1, 2026
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
28 changes: 28 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on: [push, pull_request]
name: test
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [1.24.x, 1.25.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Run tests
run: ./_tools/go-inline *.go && go fmt . && go test -v ./... -covermode=count -coverprofile=coverage.out -coverpkg=$(go list ./... | sed 's/\n/,/g')
- name: Install goveralls
if: "matrix.platform == 'ubuntu-latest'"
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
if: "matrix.platform == 'ubuntu-latest'"
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
$(go env GOPATH)/bin/goveralls -coverprofile=coverage.out -service=github
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

Loading