Skip to content

feat/open task in web #9

feat/open task in web

feat/open task in web #9

Workflow file for this run

name: build
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
buildandtest:
name: Build and test
strategy:
matrix:
go-version: [~1.21, ^1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: fmt
run: make fmt
- name: Build
run: make build