Skip to content

Build by matrix

Build by matrix #633

Workflow file for this run

name: Build by matrix
on:
pull_request:
push:
tags:
- v*
branches:
- main
schedule:
- cron: 0 0 * * *
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Go build
run: go build ./cmd/warp