-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from trealla-prolog/coro
Coroutine-based native predicates & Go 1.23 iterators
- Loading branch information
Showing
10 changed files
with
558 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
name: Test | ||
name: Test | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
branches: | ||
- "*" | ||
pull_request: | ||
release: | ||
types: [created] | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
branches: | ||
- "*" | ||
pull_request: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
test: | ||
name: Build & Test | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: "1.21" | ||
- name: Deps | ||
run: go get ./trealla | ||
- name: Build | ||
run: go build ./trealla | ||
- name: Test | ||
run: go test -v ./trealla --short | ||
jobs: | ||
test: | ||
name: Build & Test | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: "1.23" | ||
- name: Deps | ||
run: go get ./trealla | ||
- name: Build | ||
run: go build ./trealla | ||
- name: Test | ||
run: go test -v ./trealla --short |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module github.com/trealla-prolog/go | ||
|
||
go 1.19 | ||
go 1.23 | ||
|
||
require github.com/tetratelabs/wazero v1.7.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.