Skip to content

Support i386/x86 platforms #237

Support i386/x86 platforms

Support i386/x86 platforms #237

Workflow file for this run

name: gokrazy CI
on:
push:
pull_request:
jobs:
build:
name: build-and-test
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 stable Go version, e.g. 1.23.0:
# Currently on Go 1.22 because of https://go.dev/issue/68928
go-version: '1.22'
id: go
- name: Ensure all files were formatted as per gofmt
run: |
[ "$(gofmt -l $(find . -name '*.go') 2>&1)" = "" ]
- name: Build, Test and Create Disk Image
run: |
go install -mod=mod ./cmd/...
go test -mod=mod -v ./...