Skip to content

build(deps): bump actions/setup-go from 6.4.0 to 7.0.0 #70

build(deps): bump actions/setup-go from 6.4.0 to 7.0.0

build(deps): bump actions/setup-go from 6.4.0 to 7.0.0 #70

name: Linux Integration Test
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
go-version:
- "1.25"
- "1.26"
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Load the vhost_vsock kernel module
run: sudo modprobe vhost_vsock
- name: Change the permissions of /dev/vsock for integration tests
run: sudo chmod 666 /dev/vsock
- name: Run integration tests
run: go test -v -race -run TestIntegration ./...