Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 3 additions & 4 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v6
with:
go-version: 1.21
stable: false
go-version: latest

- name: Build
run: bash fuzz.sh
7 changes: 3 additions & 4 deletions .github/workflows/gen_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v6
with:
go-version: 1.18.0-beta2
stable: false
go-version: latest

- name: Generate
run: |
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/go1.19.yml → .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Go 1.19
name: Go (1.21-1.25)

on:
push:
Expand All @@ -10,13 +10,16 @@ jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.21', '1.22', '1.23', '1.24', '1.25']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version: '1.19'
go-version: ${{ matrix.go-version }}

- name: Build
run: go build -v ./...
Expand Down
25 changes: 0 additions & 25 deletions .github/workflows/go1.20.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/go1.21.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/go1.22.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/go1.23.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/go1.24.yml

This file was deleted.

6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/bradenaw/juniper

go 1.18
go 1.21.0

require (
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
golang.org/x/sync v0.11.0
)
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
golang.org/x/exp v0.0.0-20231006140011-7918f672742d h1:jtJma62tbqLibJ5sFQz8bKtEM8rJBtfilJ2qTU199MI=
golang.org/x/exp v0.0.0-20231006140011-7918f672742d/go.mod h1:ldy0pHrwJyGW56pPQzzkH36rKxoZW1tw7ZJpeKx+hdo=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 h1:2dVuKD2vS7b0QIHQbpyTISPd0LeHDbnYEryqj5Q1ug8=
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56/go.mod h1:M4RDyNAINzryxdtnbRXRL/OHtkFuWGRjvuhBJpk2IlY=
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
2 changes: 1 addition & 1 deletion test_all_versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

go_versions=(1.21.9 1.22.9 1.23.6 1.24.0)
go_versions=(1.21.9 1.22.9 1.23.6 1.24.0 1.25.0)

latest="${go_versions[-1]}"
if ! go version | grep "go$latest" > /dev/null; then
Expand Down