Skip to content

build(picotool): fetch latest release via GitHub API, not pinned version #4

build(picotool): fetch latest release via GitHub API, not pinned version

build(picotool): fetch latest release via GitHub API, not pinned version #4

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: true
- name: go vet
run: go vet ./...
- name: go build (default)
run: go build -v ./...
- name: Fetch picotool
shell: pwsh
run: ./scripts/fetch-picotool.ps1
- name: go build (embedded)
run: go build -tags embed_picotool -v ./...