Skip to content

Commit

Permalink
Merge pull request #400 from miabbott/moar_ci
Browse files Browse the repository at this point in the history
ci: add testing using 1.16/1.17/1.18
  • Loading branch information
lucab authored Apr 1, 2022
2 parents a9a7ef1 + 227311e commit f5f8d59
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Go
on:
"on":
push:
branches: [main]
pull_request:
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.14', '1.15']
go: ['1.17', '1.18']
steps:
- run: sudo apt-get -qq update
- name: Install libsystemd-dev
Expand Down
1 change: 1 addition & 0 deletions activation/files_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !windows
// +build !windows

// Package activation implements primitives for systemd socket activation.
Expand Down
1 change: 1 addition & 0 deletions examples/activation/activation.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build ignore
// +build ignore

// Activation example used by the activation unit tests.
Expand Down
1 change: 1 addition & 0 deletions examples/activation/httpserver/httpserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build ignore
// +build ignore

package main
Expand Down
1 change: 1 addition & 0 deletions examples/activation/listen.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build ignore
// +build ignore

// Activation example used by the activation unit tests.
Expand Down
1 change: 1 addition & 0 deletions examples/activation/udpconn.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build ignore
// +build ignore

// Activation example used by the activation unit tests.
Expand Down
1 change: 1 addition & 0 deletions util/util_cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build cgo
// +build cgo

package util
Expand Down
1 change: 1 addition & 0 deletions util/util_stub.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !cgo
// +build !cgo

package util
Expand Down

0 comments on commit f5f8d59

Please # to comment.