Skip to content

Feature/welcome - nothing major, just icons #679

Feature/welcome - nothing major, just icons

Feature/welcome - nothing major, just icons #679

Workflow file for this run

on:
pull_request:
paths:
- '**/*.go'
- '**/*.mod'
- '**/*.sum'
- '**/*.yml'
name: "Build"
jobs:
build:
strategy:
matrix:
go-version: [latest, dev-latest, mod]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: kevincobain2000/action-gobrew@v2
with:
version: ${{ matrix.go-version }}
- name: Go version
run: go version
shell: bash
- name: Build
run: go build ./cmd/gobrew
shell: bash