diff --git a/.github/workflows/go-next.yml b/.github/workflows/go-next.yml new file mode 100644 index 00000000..447e2dbf --- /dev/null +++ b/.github/workflows/go-next.yml @@ -0,0 +1,31 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + tests-with-go-next: + strategy: + matrix: + os: [ ubuntu-latest] + go: [ '1.23rc1' ] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + run: | + curl -fsSL -o go.tar.gz "https://go.dev/dl/go${{matrix.go}}.linux-amd64.tar.gz" + tar -xzf go.tar.gz /setup + ls /setup + GOROOT=/setup/go PATH=/setup/go:$PATH go version + + - name: Test + run: GOROOT=/setup/go PATH=/setup/go:$PATH /setup/go/bin/go run ./script/run-test --reset-instrument --debug -v \ No newline at end of file diff --git a/cmd/xgo/version.go b/cmd/xgo/version.go index fa541ce8..2eaae839 100644 --- a/cmd/xgo/version.go +++ b/cmd/xgo/version.go @@ -4,8 +4,8 @@ import "fmt" // auto updated const VERSION = "1.0.46" -const REVISION = "ab32ad121c57c321089d61906f2dd36898b7bcd1+1" -const NUMBER = 294 +const REVISION = "b2c1918871f0a8bc3ea4bb9cf46e297d21c5f433+1" +const NUMBER = 295 // manually updated const CORE_VERSION = "1.0.43"