Skip to content

Merge pull request #206 from misha-ssh/renovate/actions-checkout-6.x #115

Merge pull request #206 from misha-ssh/renovate/actions-checkout-6.x

Merge pull request #206 from misha-ssh/renovate/actions-checkout-6.x #115

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Download dependencies
run: go mod download
- name: Build
run: go build -v ./cmd/misha