Skip to content

implements configurability for the file system related operations and… #52

implements configurability for the file system related operations and…

implements configurability for the file system related operations and… #52

Workflow file for this run

name: Builds
on:
push:
branches: [ "master", "develop" ]
paths-ignore:
- '**.md'
- '**.sh'
- '**.yml'
- '**.yaml'
pull_request:
branches: [ "master", "develop" ]
workflow_dispatch:
jobs:
build:
name: Build
strategy:
matrix:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Build amd64
run: |
GOARCH=amd64 go build -v ./...
shell: bash
- name: Build 386
run: |
GOARCH=386 go build -tags net -v ./...
shell: bash
- name: Build arm64
run: |
GOARCH=arm64 go build -v ./...
shell: bash
- name: Build arm
run: |
GOARCH=arm go build -v ./...
shell: bash
- name: Finish
run: |
echo ":rocket: Testing complete!" >> $GITHUB_STEP_SUMMARY