Skip to content

HomebrewFormula: release latest version of bake #423

HomebrewFormula: release latest version of bake

HomebrewFormula: release latest version of bake #423

Workflow file for this run

---
name: Test
on:
- push
- pull_request
jobs:
# Build with latest version of Go
tools:
name: Tool
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
tool:
- cathtml
- cssh/cscp
- cssh/cssh
- clitable/cmd/csvtable
- diffdir
- grepp
- joinlines
- kdecode
- password-cache/cmd/password-cache
- patch-seam
- reverseproxy
- tz
- webserve
- yaml-parse
- yaml-seam
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: 1.x
cache-dependency-path: "${{ matrix.tool }}/go.sum"
- id: build
name: Build
run: |
go build -v .
dir=$(basename $PWD)
echo "dir: $dir"
echo "binary=$dir" >> $GITHUB_OUTPUT
working-directory: ${{ matrix.tool }}
shell: bash
- name: Test
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
working-directory: ${{ matrix.tool }}
- name: Upload
uses: actions/upload-artifact@v3
with:
path: ${{ matrix.tool }}/${{ steps.build.outputs.binary }}
name: ${{ steps.build.outputs.binary }} ${{ matrix.os }}
# Build with latest version of Go
tools-linux:
name: Tool
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
tool:
- cli-bookmarks
- ffind
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: 1.x
cache-dependency-path: "${{ matrix.tool }}/go.sum"
- id: build
name: Build
run: |
go build -v .
dir=$(basename $PWD)
echo "dir: $dir"
echo "binary=$dir" >> $GITHUB_OUTPUT
working-directory: ${{ matrix.tool }}
shell: bash
- name: Test
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
working-directory: ${{ matrix.tool }}
- name: Upload
uses: actions/upload-artifact@v3
with:
path: ${{ matrix.tool }}/${{ steps.build.outputs.binary }}
name: ${{ steps.build.outputs.binary }} ${{ matrix.os }}
# Support last two releases of Go
libs:
name: Lib
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go: ["1.23", "1.22"]
tool: [buildutils, cueutils, fsmodtime, run]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache-dependency-path: "${{ matrix.tool }}/go.sum"
id: go
- name: Test
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
working-directory: ${{ matrix.tool }}