Skip to content

feat: set temporary variables in user input #13

feat: set temporary variables in user input

feat: set temporary variables in user input #13

Workflow file for this run

# yaml-language-server: https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
---
name: goreleaser
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-mac:
runs-on: macos-latest
steps:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: stable
cache: true
architecture: x64
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: go build ./...
- name: Test
run: go test ./... -v
test-win:
runs-on: windows-latest
steps:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: stable
cache: true
architecture: x64
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: go build ./...
- name: Test
run: go test ./... -v
test-linux:
runs-on: ubuntu-latest
steps:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: stable
cache: true
architecture: x64
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: go build ./...
- name: Test
run: go test ./... -v