Skip to content

feat: implement Linux 6.6 io-uring basic usages #53

feat: implement Linux 6.6 io-uring basic usages

feat: implement Linux 6.6 io-uring basic usages #53

Workflow file for this run

name: Go
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.23.x' ]
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Build
run: go build -v .
- name: Test with the Go CLI
run: go test -v .