Skip to content

Update

Update #27

Workflow file for this run

name: build-linux
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04 ]
name: Build ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
- name: Check go install
run: go version
- name: Build
run: |
go build -o ./ ./...
ls