Ensure Kubernetes compatible format for Location when setting up driver #129
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux Build & Unit Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/[email protected] | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.20.3 | |
id: go | |
- name: Install Dependencies | |
run: sudo apt-get update && sudo apt-get install -y libcryptsetup-dev | |
- name: Build Test | |
run: | | |
go test -covermode=count -coverprofile=profile.cov ./pkg/... |