Skip to content

gpt: return all partition UUIDs #52

gpt: return all partition UUIDs

gpt: return all partition UUIDs #52

Workflow file for this run

name: Push
on:
push:
branches: [ main ]
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
# Run on the latest minor release of Go, e.g. 1.21.3:
go-version: 'stable'
id: go
- name: Ensure all files were formatted as per gofmt
run: |
[ "$(gofmt -l $(find . -name '*.go') 2>&1)" = "" ]
- name: run tests
run: |
go test ./...