Skip to content

VolumeMode=block support #29

VolumeMode=block support

VolumeMode=block support #29

Workflow file for this run

name: Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint
run: make lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['stable', 'oldstable']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: make test