Skip to content

build(deps): bump actions/checkout from 6.0.2 to 7.0.1 #69

build(deps): bump actions/checkout from 6.0.2 to 7.0.1

build(deps): bump actions/checkout from 6.0.2 to 7.0.1 #69

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@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- 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 ./...